PATH:
home
/
letacommog
/
charpente-ain
/
wp-content
/
plugins
/
w3-total-cache
/
lib
/
Aws
/
Aws
<?php namespace Aws; use Psr\Cache\CacheItemPoolInterface; class PsrCacheAdapter implements CacheInterface { /** @var CacheItemPoolInterface */ private $pool; public function __construct(CacheItemPoolInterface $pool) { $this->pool = $pool; } public function get($key) { $item = $this->pool->getItem($key); return $item->isHit() ? $item->get() : null; } public function set($key, $value, $ttl = 0) { $item = $this->pool->getItem($key); $item->set($value); if ($ttl > 0) { $item->expiresAfter($ttl); } $this->pool->save($item); } public function remove($key) { $this->pool->deleteItem($key); } }
[+]
..
[-] 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]