PATH:
home
/
lab2454c
/
baas.elementalrock.com
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
aws
/
aws-sdk-php
/
src
<?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); } }
[-] RetryMiddleware.php
[edit]
[+]
ClientSideMonitoring
[-] StreamRequestPayloadMiddleware.php
[edit]
[-] HasDataTrait.php
[edit]
[-] ConfigurationProviderInterface.php
[edit]
[+]
data
[-] HasMonitoringEventsTrait.php
[edit]
[-] CacheInterface.php
[edit]
[-] Sdk.php
[edit]
[-] MockHandler.php
[edit]
[-] JsonCompiler.php
[edit]
[-] HashingStream.php
[edit]
[-] PsrCacheAdapter.php
[edit]
[+]
..
[+]
Api
[+]
Exception
[-] CommandInterface.php
[edit]
[-] HandlerList.php
[edit]
[+]
DefaultsMode
[-] Waiter.php
[edit]
[+]
Multipart
[-] AbstractConfigurationProvider.php
[edit]
[-] InputValidationMiddleware.php
[edit]
[-] ResultPaginator.php
[edit]
[-] RetryMiddlewareV2.php
[edit]
[+]
Handler
[+]
EndpointDiscovery
[-] ResponseContainerInterface.php
[edit]
[-] ClientResolver.php
[edit]
[+]
Signature
[-] Command.php
[edit]
[-] History.php
[edit]
[-] Middleware.php
[edit]
[+]
Endpoint
[-] AwsClientInterface.php
[edit]
[+]
Iam
[-] Psr16CacheAdapter.php
[edit]
[-] MultiRegionClient.php
[edit]
[-] CommandPool.php
[edit]
[-] HashInterface.php
[edit]
[-] IdempotencyTokenMiddleware.php
[edit]
[-] AwsClientTrait.php
[edit]
[-] MonitoringEventsInterface.php
[edit]
[-] TraceMiddleware.php
[edit]
[-] EndpointParameterMiddleware.php
[edit]
[+]
Arn
[+]
Credentials
[-] functions.php
[edit]
[-] PresignUrlMiddleware.php
[edit]
[-] AwsClient.php
[edit]
[-] Result.php
[edit]
[-] ResultInterface.php
[edit]
[-] WrappedHttpHandler.php
[edit]
[+]
Retry
[-] PhpHash.php
[edit]
[-] LruArrayCache.php
[edit]
[-] DoctrineCacheAdapter.php
[edit]
[+]
S3