⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.177
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
ctaacademy
/
www
/
vendor
/
aws
/
aws-sdk-php
/
src
/
View File Name :
AbstractConfigurationProvider.php
get($cacheKey); if ($found instanceof static::$interfaceClass) { return Promise\Create::promiseFor($found); } return $provider() ->then(function ($config) use ( $cache, $cacheKey ) { $cache->set($cacheKey, $config); return $config; }); }; } /** * Creates an aggregate configuration provider that invokes the provided * variadic providers one after the other until a provider returns * configuration. * * @return callable */ public static function chain() { $links = func_get_args(); if (empty($links)) { throw new \InvalidArgumentException('No providers in chain'); } return function () use ($links) { /** @var callable $parent */ $parent = array_shift($links); $promise = $parent(); while ($next = array_shift($links)) { $promise = $promise->otherwise($next); } return $promise; }; } /** * Gets the environment's HOME directory if available. * * @return null|string */ protected static function getHomeDir() { // On Linux/Unix-like systems, use the HOME environment variable if ($homeDir = getenv('HOME')) { return $homeDir; } // Get the HOMEDRIVE and HOMEPATH values for Windows hosts $homeDrive = getenv('HOMEDRIVE'); $homePath = getenv('HOMEPATH'); return ($homeDrive && $homePath) ? $homeDrive . $homePath : null; } /** * Gets default config file location from environment, falling back to aws * default location * * @return string */ protected static function getDefaultConfigFilename() { if ($filename = getenv(self::ENV_CONFIG_FILE)) { return $filename; } return self::getHomeDir() . '/.aws/config'; } /** * Wraps a config provider and caches previously provided configuration. * * @param callable $provider Config provider function to wrap. * * @return callable */ public static function memoize(callable $provider) { return function () use ($provider) { static $result; static $isConstant; // Constant config will be returned constantly. if ($isConstant) { return $result; } // Create the initial promise that will be used as the cached value if (null === $result) { $result = $provider(); } // Return config and set flag that provider is already set return $result ->then(function ($config) use (&$isConstant) { $isConstant = true; return $config; }); }; } /** * Reject promise with standardized exception. * * @param $msg * @return Promise\RejectedPromise */ protected static function reject($msg) { $exceptionClass = static::$exceptionClass; return new Promise\RejectedPromise(new $exceptionClass($msg)); } }