PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
apilora.sandbox.dos-group.com
/
vendor
/
league
/
flysystem
/
src
<?php namespace League\Flysystem; final class SafeStorage { /** * @var string */ private $hash; /** * @var array */ protected static $safeStorage = []; public function __construct() { $this->hash = spl_object_hash($this); static::$safeStorage[$this->hash] = []; } public function storeSafely($key, $value) { static::$safeStorage[$this->hash][$key] = $value; } public function retrieveSafely($key) { if (array_key_exists($key, static::$safeStorage[$this->hash])) { return static::$safeStorage[$this->hash][$key]; } } public function __destruct() { unset(static::$safeStorage[$this->hash]); } }
[-] UnreadableFileException.php
[open]
[-] Config.php
[open]
[-] Filesystem.php
[open]
[-] Exception.php
[open]
[+]
Adapter
[-] SafeStorage.php
[open]
[-] AdapterInterface.php
[open]
[+]
Util
[+]
..
[-] FilesystemNotFoundException.php
[open]
[-] PluginInterface.php
[open]
[-] MountManager.php
[open]
[+]
Plugin
[-] ConfigAwareTrait.php
[open]
[-] FileExistsException.php
[open]
[-] Util.php
[open]
[-] Handler.php
[open]
[-] Directory.php
[open]
[-] File.php
[open]
[-] RootViolationException.php
[open]
[-] ReadInterface.php
[open]
[-] NotSupportedException.php
[open]
[-] FileNotFoundException.php
[open]
[-] FilesystemInterface.php
[open]