/var/www/vhosts/ihelp.ro/httpdocs/vendor/league/flysystem/src
NameSizeModeActions
Adapter/-0755rm
Plugin/-0755rm
Util/-0755rm
AdapterInterface.php25920644editdlrm
Config.php19850644editdlrm
ConfigAwareTrait.php8510644editdlrm
ConnectionErrorException.php1460644editdlrm
ConnectionRuntimeException.php1520644editdlrm
CorruptedPathDetected.php3560644editdlrm
Directory.php5540644editdlrm
Exception.php1130644editdlrm
File.php41800644editdlrm
FileExistsException.php6990644editdlrm
FileNotFoundException.php6910644editdlrm
Filesystem.php104770644editdlrm
FilesystemException.php700644editdlrm
FilesystemInterface.php76840644editdlrm
FilesystemNotFoundException.php2150644editdlrm
Handler.php25910644editdlrm
InvalidRootException.php1460644editdlrm
MountManager.php174170644editdlrm
NotSupportedException.php8040644editdlrm
PluginInterface.php3440644editdlrm
ReadInterface.php15780644editdlrm
RootViolationException.php1510644editdlrm
SafeStorage.php7440644editdlrm
UnreadableFileException.php3450644editdlrm
Util.php84780644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/league/flysystem/src/Config.php (1985B)
settings = $settings; } /** * Get a setting. * * @param string $key * @param mixed $default * * @return mixed config setting or default when not found */ public function get($key, $default = null) { if ( ! array_key_exists($key, $this->settings)) { return $this->getDefault($key, $default); } return $this->settings[$key]; } /** * Check if an item exists by key. * * @param string $key * * @return bool */ public function has($key) { if (array_key_exists($key, $this->settings)) { return true; } return $this->fallback instanceof Config ? $this->fallback->has($key) : false; } /** * Try to retrieve a default setting from a config fallback. * * @param string $key * @param mixed $default * * @return mixed config setting or default when not found */ protected function getDefault($key, $default) { if ( ! $this->fallback) { return $default; } return $this->fallback->get($key, $default); } /** * Set a setting. * * @param string $key * @param mixed $value * * @return $this */ public function set($key, $value) { $this->settings[$key] = $value; return $this; } /** * Set the fallback. * * @param Config $fallback * * @return $this */ public function setFallback(Config $fallback) { $this->fallback = $fallback; return $this; } }