FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
php-http
/
message-factory
/
src
Edit File: UriFactory.php
<?php namespace AmeliaHttp\Message; use AmeliaPsr\Http\Message\UriInterface; /** * Factory for PSR-7 URI. * * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> * * @deprecated since version 1.1, use AmeliaPsr\Http\Message\UriFactoryInterface instead. */ interface UriFactory { /** * Creates an PSR-7 URI. * * @param string|UriInterface $uri * * @return UriInterface * * @throws \InvalidArgumentException if the $uri argument can not be converted into a valid URI */ public function createUri($uri); }
Save
Back