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]>
* @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);
uri_for
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
return /** @scrutinizer ignore-call */ Psr7\uri_for($uri);
}