Lines Matching refs:UriInterface

461 - uri: (UriInterface) Set the URI.
533 `public static function uriFor(string|UriInterface $uri): UriInterface`
535 Returns a UriInterface for the given value.
537 This function accepts a string or UriInterface and returns a
538 UriInterface for the given value. If the value is already a
539 UriInterface, it is returned as-is.
588 Aside from the standard `Psr\Http\Message\UriInterface` implementation in form of the `GuzzleHttp\P…
593 An instance of `Psr\Http\Message\UriInterface` can either be an absolute URI or a relative referenc…
606 `public static function isAbsolute(UriInterface $uri): bool`
612 `public static function isNetworkPathReference(UriInterface $uri): bool`
619 `public static function isAbsolutePathReference(UriInterface $uri): bool`
626 `public static function isRelativePathReference(UriInterface $uri): bool`
633 `public static function isSameDocumentReference(UriInterface $uri, UriInterface $base = null): bool`
645 `public static function isDefaultPort(UriInterface $uri): bool`
647 Whether the URI has the default port of the current scheme. `Psr\Http\Message\UriInterface::getPort…
656 manually but instead is used indirectly via `Psr\Http\Message\UriInterface::__toString`.
660 `public static function fromParts(array $parts): UriInterface`
667 `public static function withQueryValue(UriInterface $uri, $key, $value): UriInterface`
675 `public static function withQueryValues(UriInterface $uri, array $keyValueArray): UriInterface`
682 `public static function withoutQueryValue(UriInterface $uri, $key): UriInterface`
695 `public static function resolve(UriInterface $base, UriInterface $rel): UriInterface`
708 `public static function relativize(UriInterface $base, UriInterface $target): UriInterface`
734 `public static function normalize(UriInterface $uri, $flags = self::PRESERVING_NORMALIZATIONS): Uri…
736 …ized URI. The scheme and host component are already normalized to lowercase per PSR-7 UriInterface.
804 `public static function isEquivalent(UriInterface $uri1, UriInterface $uri2, $normalizations = self…