1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 02:22:57 +01:00
This commit is contained in:
Michael Dowling 2013-06-02 20:40:51 -07:00
parent 3386634a79
commit 4352035ae6
8 changed files with 0 additions and 10 deletions

View File

@ -5,7 +5,6 @@ namespace Guzzle\Cache;
use Doctrine\Common\Cache\Cache;
use Guzzle\Common\Exception\InvalidArgumentException;
use Guzzle\Common\FromConfigInterface;
use Guzzle\Log\PsrLogAdapter;
use Zend\Cache\Storage\StorageInterface;
/**

View File

@ -24,7 +24,6 @@ class DoctrineCacheAdapter extends AbstractCacheAdapter
return $this->cache->contains($id);
}
public function delete($id, array $options = null)
{
return $this->cache->delete($id);

View File

@ -8,7 +8,6 @@ use Guzzle\Common\Exception\InvalidArgumentException;
use Guzzle\Http\Message\EntityEnclosingRequestInterface;
use Guzzle\Http\Message\RequestInterface;
use Guzzle\Http\Message\RequestFactoryInterface;
use Guzzle\Parser\UriTemplate\UriTemplateInterface;
use Guzzle\Http\Curl\CurlMultiInterface;
/**

View File

@ -2,7 +2,6 @@
namespace Guzzle\Plugin\Cache;
use Guzzle\Http\Exception\CurlException;
use Guzzle\Http\Message\RequestInterface;
use Guzzle\Http\Message\Response;
use Guzzle\Http\Exception\BadResponseException;

View File

@ -4,14 +4,11 @@ namespace Guzzle\Service;
use Guzzle\Common\FromConfigInterface;
use Guzzle\Common\Exception\InvalidArgumentException;
use Guzzle\Inflection\InflectorInterface;
use Guzzle\Http\ClientInterface as HttpClientInterface;
use Guzzle\Service\Exception\CommandTransferException;
use Guzzle\Service\Command\CommandInterface;
use Guzzle\Service\Description\ServiceDescriptionInterface;
use Guzzle\Service\Command\Factory\FactoryInterface as CommandFactoryInterface;
use Guzzle\Service\Resource\ResourceIteratorInterface;
use Guzzle\Service\Resource\ResourceIteratorFactoryInterface;
/**
* Client interface for executing commands on a web service.

View File

@ -4,7 +4,6 @@ namespace Guzzle\Service\Command;
use Guzzle\Http\Message\RequestInterface;
use Guzzle\Http\Url;
use Guzzle\Parser\ParserRegistry;
use Guzzle\Service\Command\LocationVisitor\Request\RequestVisitorInterface;
use Guzzle\Service\Command\LocationVisitor\VisitorFlyweight;
use Guzzle\Service\Description\OperationInterface;

View File

@ -3,7 +3,6 @@
namespace Guzzle\Service\Resource;
use Guzzle\Common\Collection;
use Guzzle\Common\Exception\RuntimeException;
use Guzzle\Service\Description\Parameter;
/**

View File

@ -5,7 +5,6 @@ namespace Guzzle\Tests\Cache;
use Guzzle\Cache\CacheAdapterFactory;
use Guzzle\Cache\DoctrineCacheAdapter;
use Doctrine\Common\Cache\ArrayCache;
use Monolog\Logger;
use Zend\Cache\StorageFactory;
/**