mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-25 02:22:57 +01:00
CS fixes
This commit is contained in:
parent
3386634a79
commit
4352035ae6
@ -5,7 +5,6 @@ namespace Guzzle\Cache;
|
|||||||
use Doctrine\Common\Cache\Cache;
|
use Doctrine\Common\Cache\Cache;
|
||||||
use Guzzle\Common\Exception\InvalidArgumentException;
|
use Guzzle\Common\Exception\InvalidArgumentException;
|
||||||
use Guzzle\Common\FromConfigInterface;
|
use Guzzle\Common\FromConfigInterface;
|
||||||
use Guzzle\Log\PsrLogAdapter;
|
|
||||||
use Zend\Cache\Storage\StorageInterface;
|
use Zend\Cache\Storage\StorageInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -24,7 +24,6 @@ class DoctrineCacheAdapter extends AbstractCacheAdapter
|
|||||||
return $this->cache->contains($id);
|
return $this->cache->contains($id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function delete($id, array $options = null)
|
public function delete($id, array $options = null)
|
||||||
{
|
{
|
||||||
return $this->cache->delete($id);
|
return $this->cache->delete($id);
|
||||||
|
@ -8,7 +8,6 @@ use Guzzle\Common\Exception\InvalidArgumentException;
|
|||||||
use Guzzle\Http\Message\EntityEnclosingRequestInterface;
|
use Guzzle\Http\Message\EntityEnclosingRequestInterface;
|
||||||
use Guzzle\Http\Message\RequestInterface;
|
use Guzzle\Http\Message\RequestInterface;
|
||||||
use Guzzle\Http\Message\RequestFactoryInterface;
|
use Guzzle\Http\Message\RequestFactoryInterface;
|
||||||
use Guzzle\Parser\UriTemplate\UriTemplateInterface;
|
|
||||||
use Guzzle\Http\Curl\CurlMultiInterface;
|
use Guzzle\Http\Curl\CurlMultiInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
namespace Guzzle\Plugin\Cache;
|
namespace Guzzle\Plugin\Cache;
|
||||||
|
|
||||||
use Guzzle\Http\Exception\CurlException;
|
|
||||||
use Guzzle\Http\Message\RequestInterface;
|
use Guzzle\Http\Message\RequestInterface;
|
||||||
use Guzzle\Http\Message\Response;
|
use Guzzle\Http\Message\Response;
|
||||||
use Guzzle\Http\Exception\BadResponseException;
|
use Guzzle\Http\Exception\BadResponseException;
|
||||||
|
@ -4,14 +4,11 @@ namespace Guzzle\Service;
|
|||||||
|
|
||||||
use Guzzle\Common\FromConfigInterface;
|
use Guzzle\Common\FromConfigInterface;
|
||||||
use Guzzle\Common\Exception\InvalidArgumentException;
|
use Guzzle\Common\Exception\InvalidArgumentException;
|
||||||
use Guzzle\Inflection\InflectorInterface;
|
|
||||||
use Guzzle\Http\ClientInterface as HttpClientInterface;
|
use Guzzle\Http\ClientInterface as HttpClientInterface;
|
||||||
use Guzzle\Service\Exception\CommandTransferException;
|
use Guzzle\Service\Exception\CommandTransferException;
|
||||||
use Guzzle\Service\Command\CommandInterface;
|
use Guzzle\Service\Command\CommandInterface;
|
||||||
use Guzzle\Service\Description\ServiceDescriptionInterface;
|
use Guzzle\Service\Description\ServiceDescriptionInterface;
|
||||||
use Guzzle\Service\Command\Factory\FactoryInterface as CommandFactoryInterface;
|
|
||||||
use Guzzle\Service\Resource\ResourceIteratorInterface;
|
use Guzzle\Service\Resource\ResourceIteratorInterface;
|
||||||
use Guzzle\Service\Resource\ResourceIteratorFactoryInterface;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Client interface for executing commands on a web service.
|
* Client interface for executing commands on a web service.
|
||||||
|
@ -4,7 +4,6 @@ namespace Guzzle\Service\Command;
|
|||||||
|
|
||||||
use Guzzle\Http\Message\RequestInterface;
|
use Guzzle\Http\Message\RequestInterface;
|
||||||
use Guzzle\Http\Url;
|
use Guzzle\Http\Url;
|
||||||
use Guzzle\Parser\ParserRegistry;
|
|
||||||
use Guzzle\Service\Command\LocationVisitor\Request\RequestVisitorInterface;
|
use Guzzle\Service\Command\LocationVisitor\Request\RequestVisitorInterface;
|
||||||
use Guzzle\Service\Command\LocationVisitor\VisitorFlyweight;
|
use Guzzle\Service\Command\LocationVisitor\VisitorFlyweight;
|
||||||
use Guzzle\Service\Description\OperationInterface;
|
use Guzzle\Service\Description\OperationInterface;
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
namespace Guzzle\Service\Resource;
|
namespace Guzzle\Service\Resource;
|
||||||
|
|
||||||
use Guzzle\Common\Collection;
|
use Guzzle\Common\Collection;
|
||||||
use Guzzle\Common\Exception\RuntimeException;
|
|
||||||
use Guzzle\Service\Description\Parameter;
|
use Guzzle\Service\Description\Parameter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -5,7 +5,6 @@ namespace Guzzle\Tests\Cache;
|
|||||||
use Guzzle\Cache\CacheAdapterFactory;
|
use Guzzle\Cache\CacheAdapterFactory;
|
||||||
use Guzzle\Cache\DoctrineCacheAdapter;
|
use Guzzle\Cache\DoctrineCacheAdapter;
|
||||||
use Doctrine\Common\Cache\ArrayCache;
|
use Doctrine\Common\Cache\ArrayCache;
|
||||||
use Monolog\Logger;
|
|
||||||
use Zend\Cache\StorageFactory;
|
use Zend\Cache\StorageFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user