PATH:
home
/
letacommog
/
charpente-ain
/
wp-content
/
plugins
/
w3-total-cache
/
lib
/
Aws
/
Aws
<?php namespace Aws; use Doctrine\Common\Cache\Cache; class DoctrineCacheAdapter implements CacheInterface, Cache { /** @var Cache */ private $cache; public function __construct(Cache $cache) { $this->cache = $cache; } public function get($key) { return $this->cache->fetch($key); } public function fetch($key) { return $this->get($key); } public function set($key, $value, $ttl = 0) { return $this->cache->save($key, $value, $ttl); } public function save($key, $value, $ttl = 0) { return $this->set($key, $value, $ttl); } public function remove($key) { return $this->cache->delete($key); } public function delete($key) { return $this->remove($key); } public function contains($key) { return $this->cache->contains($key); } public function getStats() { return $this->cache->getStats(); } }
[+]
..
[-] Result.php
[edit]
[+]
EndpointDiscovery
[+]
Endpoint
[+]
data
[-] Psr16CacheAdapter.php
[edit]
[-] PsrCacheAdapter.php
[edit]
[-] WrappedHttpHandler.php
[edit]
[-] MonitoringEventsInterface.php
[edit]
[-] CacheInterface.php
[edit]
[-] TraceMiddleware.php
[edit]
[-] IdempotencyTokenMiddleware.php
[edit]
[-] HandlerList.php
[edit]
[-] MultiRegionClient.php
[edit]
[+]
ClientSideMonitoring
[+]
Handler
[-] AwsClient.php
[edit]
[-] AwsClientTrait.php
[edit]
[-] Middleware.php
[edit]
[-] JsonCompiler.php
[edit]
[-] HasDataTrait.php
[edit]
[-] CommandPool.php
[edit]
[+]
signer
[-] functions.php
[edit]
[+]
Sns
[+]
Exception
[-] HashInterface.php
[edit]
[-] PresignUrlMiddleware.php
[edit]
[+]
Signature
[-] HashingStream.php
[edit]
[-] EndpointParameterMiddleware.php
[edit]
[+]
S3
[-] ResponseContainerInterface.php
[edit]
[+]
CloudFront
[-] RetryMiddleware.php
[edit]
[-] MockHandler.php
[edit]
[-] CommandInterface.php
[edit]
[-] Waiter.php
[edit]
[-] ResultInterface.php
[edit]
[-] History.php
[edit]
[-] Sdk.php
[edit]
[-] AwsClientInterface.php
[edit]
[+]
Credentials
[-] ClientResolver.php
[edit]
[-] Command.php
[edit]
[+]
Api
[-] LruArrayCache.php
[edit]
[-] DoctrineCacheAdapter.php
[edit]
[-] ResultPaginator.php
[edit]
[-] PhpHash.php
[edit]
[-] HasMonitoringEventsTrait.php
[edit]