PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
aws
/
aws-sdk-php
/
src
<?php namespace Aws; /** * Trait implementing ToArrayInterface, \ArrayAccess, \Countable, and * \IteratorAggregate */ trait HasDataTrait { /** @var array */ private $data = []; /** * @return \Traversable */ #[\ReturnTypeWillChange] public function getIterator() { return new \ArrayIterator($this->data); } /** * This method returns a reference to the variable to allow for indirect * array modification (e.g., $foo['bar']['baz'] = 'qux'). * * @param $offset * * @return mixed|null */ #[\ReturnTypeWillChange] public function & offsetGet($offset) { if (isset($this->data[$offset])) { return $this->data[$offset]; } $value = null; return $value; } /** * @return void */ #[\ReturnTypeWillChange] public function offsetSet($offset, $value) { $this->data[$offset] = $value; } /** * @return bool */ #[\ReturnTypeWillChange] public function offsetExists($offset) { return isset($this->data[$offset]); } /** * @return void */ #[\ReturnTypeWillChange] public function offsetUnset($offset) { unset($this->data[$offset]); } public function toArray() { return $this->data; } /** * @return int */ #[\ReturnTypeWillChange] public function count() { return count($this->data); } }
[+]
Exception
[+]
Endpoint
[-] Command.php
[edit]
[-] IdempotencyTokenMiddleware.php
[edit]
[-] QueryCompatibleInputMiddleware.php
[edit]
[-] ResultInterface.php
[edit]
[+]
Auth
[-] MonitoringEventsInterface.php
[edit]
[+]
ClientSideMonitoring
[-] RetryMiddlewareV2.php
[edit]
[-] WrappedHttpHandler.php
[edit]
[-] TraceMiddleware.php
[edit]
[-] AbstractConfigurationProvider.php
[edit]
[+]
Signature
[+]
Glacier
[+]
Token
[+]
Api
[-] InputValidationMiddleware.php
[edit]
[-] UserAgentMiddleware.php
[edit]
[-] ClientResolver.php
[edit]
[+]
SSOOIDC
[+]
data
[-] RetryMiddleware.php
[edit]
[+]
DefaultsMode
[-] Result.php
[edit]
[+]
Arn
[-] RequestCompressionMiddleware.php
[edit]
[-] History.php
[edit]
[-] ConfigurationProviderInterface.php
[edit]
[+]
Identity
[+]
SSO
[-] AwsClient.php
[edit]
[-] AwsClientInterface.php
[edit]
[+]
Kms
[-] functions.php
[edit]
[-] MetricsBuilder.php
[edit]
[-] Sdk.php
[edit]
[-] ResultPaginator.php
[edit]
[-] PresignUrlMiddleware.php
[edit]
[-] StreamRequestPayloadMiddleware.php
[edit]
[-] HashingStream.php
[edit]
[-] Waiter.php
[edit]
[-] EndpointParameterMiddleware.php
[edit]
[-] Middleware.php
[edit]
[-] PhpHash.php
[edit]
[-] Psr16CacheAdapter.php
[edit]
[+]
..
[+]
Retry
[+]
Script
[-] DoctrineCacheAdapter.php
[edit]
[+]
Sts
[-] LruArrayCache.php
[edit]
[+]
Credentials
[+]
Crypto
[+]
Configuration
[+]
EndpointDiscovery
[-] PsrCacheAdapter.php
[edit]
[+]
Handler
[-] MockHandler.php
[edit]
[-] HashInterface.php
[edit]
[-] HasDataTrait.php
[edit]
[-] HandlerList.php
[edit]
[-] CommandInterface.php
[edit]
[-] JsonCompiler.php
[edit]
[-] CacheInterface.php
[edit]
[+]
EndpointV2
[-] MultiRegionClient.php
[edit]
[+]
Multipart
[+]
S3
[-] CommandPool.php
[edit]
[-] ResponseContainerInterface.php
[edit]
[-] HasMonitoringEventsTrait.php
[edit]
[-] AwsClientTrait.php
[edit]