PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
league
/
flysystem
/
src
<?php namespace League\Flysystem; /** * @internal */ trait ConfigAwareTrait { /** * @var Config */ protected $config; /** * Set the config. * * @param Config|array|null $config */ protected function setConfig($config) { $this->config = $config ? Util::ensureConfig($config) : new Config; } /** * Get the Config. * * @return Config config object */ public function getConfig() { return $this->config; } /** * Convert a config array to a Config object with the correct fallback. * * @param array $config * * @return Config */ protected function prepareConfig(array $config) { $config = new Config($config); $config->setFallback($this->getConfig()); return $config; } }
[-] ConnectionRuntimeException.php
[edit]
[-] FilesystemNotFoundException.php
[edit]
[-] File.php
[edit]
[+]
Plugin
[+]
..
[-] Config.php
[edit]
[-] InvalidRootException.php
[edit]
[-] RootViolationException.php
[edit]
[-] CorruptedPathDetected.php
[edit]
[-] ConfigAwareTrait.php
[edit]
[-] FilesystemException.php
[edit]
[-] ConnectionErrorException.php
[edit]
[-] Directory.php
[edit]
[-] PluginInterface.php
[edit]
[-] FileNotFoundException.php
[edit]
[-] FilesystemInterface.php
[edit]
[-] FileExistsException.php
[edit]
[-] AdapterInterface.php
[edit]
[-] Util.php
[edit]
[-] SafeStorage.php
[edit]
[-] MountManager.php
[edit]
[-] Handler.php
[edit]
[+]
Util
[-] Exception.php
[edit]
[-] Filesystem.php
[edit]
[+]
Adapter
[-] ReadInterface.php
[edit]
[-] NotSupportedException.php
[edit]
[-] UnreadableFileException.php
[edit]