for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Http\Message\UriFactory;
use GuzzleHttp\Psr7;
use Http\Message\UriFactory;
/**
* Creates Guzzle URI.
*
* @author David de Boer <[email protected]>
*/
final class GuzzleUriFactory implements UriFactory
{
* {@inheritdoc}
public function createUri($uri)
return Psr7\uri_for($uri);
}