interface UriFactoryInterface
Hierarchy
- interface \Psr\Http\Message\UriFactoryInterface
Expanded class hierarchy of UriFactoryInterface
All classes that implement UriFactoryInterface
9 files declare their use of UriFactoryInterface
- CommonPsr17ClassesStrategy.php in vendor/
php-http/ discovery/ src/ Strategy/ CommonPsr17ClassesStrategy.php - DependencyResolver.php in vendor/
open-telemetry/ sdk/ Common/ Adapter/ HttpDiscovery/ DependencyResolver.php - FactoryResolverInterface.php in vendor/
open-telemetry/ sdk/ Common/ Http/ Psr/ Message/ FactoryResolverInterface.php - HttpFactory.php in vendor/
guzzlehttp/ psr7/ src/ HttpFactory.php - MessageFactoryResolver.php in vendor/
open-telemetry/ sdk/ Common/ Adapter/ HttpDiscovery/ MessageFactoryResolver.php
File
-
vendor/
psr/ http-factory/ src/ UriFactoryInterface.php, line 5
Namespace
Psr\Http\MessageView source
interface UriFactoryInterface {
/**
* Create a new URI.
*
* @param string $uri
*
* @return UriInterface
*
* @throws \InvalidArgumentException If the given URI cannot be parsed.
*/
public function createUri(string $uri = '') : UriInterface;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
UriFactoryInterface::createUri | public | function | Create a new URI. | 2 |