[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/vendor/carlos-mg89/oauth/src/OAuth/Common/Http/Uri/ -> UriFactoryInterface.php (source)

   1  <?php
   2  
   3  namespace OAuth\Common\Http\Uri;
   4  
   5  /**
   6   * Factory interface for uniform resource indicators.
   7   */
   8  interface UriFactoryInterface
   9  {
  10      /**
  11       * Factory method to build a URI from a super-global $_SERVER array.
  12       *
  13       * @return UriInterface
  14       */
  15      public function createFromSuperGlobalArray(array $_server);
  16  
  17      /**
  18       * Creates a URI from an absolute URI.
  19       *
  20       * @param string $absoluteUri
  21       *
  22       * @return UriInterface
  23       */
  24      public function createFromAbsolute($absoluteUri);
  25  
  26      /**
  27       * Factory method to build a URI from parts.
  28       *
  29       * @param string $scheme
  30       * @param string $userInfo
  31       * @param string $host
  32       * @param string $port
  33       * @param string $path
  34       * @param string $query
  35       * @param string $fragment
  36       *
  37       * @return UriInterface
  38       */
  39      public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '');
  40  }


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1