PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wilcity-mobile-app
/
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; } }
[+]
..
[-] ConfigAwareTrait.php
[edit]
[-] FileNotFoundException.php
[edit]
[+]
Plugin
[-] Config.php
[edit]
[-] Filesystem.php
[edit]
[-] ReadInterface.php
[edit]
[-] RootViolationException.php
[edit]
[-] Util.php
[edit]
[-] Exception.php
[edit]
[-] FilesystemNotFoundException.php
[edit]
[-] UnreadableFileException.php
[edit]
[-] AdapterInterface.php
[edit]
[+]
Util
[+]
Adapter
[-] Handler.php
[edit]
[-] FilesystemInterface.php
[edit]
[-] MountManager.php
[edit]
[-] FileExistsException.php
[edit]
[-] SafeStorage.php
[edit]
[-] PluginInterface.php
[edit]
[-] Directory.php
[edit]
[-] File.php
[edit]
[-] NotSupportedException.php
[edit]