Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
application
/
third_party
/
omnipay
/
vendor
/
php-http
/
message
/
src
/
UriFactory
✏️
Editing: GuzzleUriFactory.php
<?php namespace Http\Message\UriFactory; use GuzzleHttp\Psr7; use Http\Message\UriFactory; /** * Creates Guzzle URI. * * @author David de Boer <david@ddeboer.nl> * * @deprecated This will be removed in php-http/message2.0. Consider using the official Guzzle PSR-17 factory */ final class GuzzleUriFactory implements UriFactory { /** * {@inheritdoc} */ public function createUri($uri) { return Psr7\uri_for($uri); } }
💾 Save Changes
❌ Cancel