X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/vendor/league/flysystem/src
home
/
gfecatvj
/
sites
/
restate
/
vendor
/
league
/
flysystem
/
src
/
📁
..
📁
Adapter
📄
AdapterInterface.php
(2.53 KB)
📄
Config.php
(1.94 KB)
📄
ConfigAwareTrait.php
(851 B)
📄
ConnectionErrorException.php
(146 B)
📄
ConnectionRuntimeException.php
(152 B)
📄
Directory.php
(554 B)
📄
Exception.php
(113 B)
📄
File.php
(4.08 KB)
📄
FileExistsException.php
(699 B)
📄
FileNotFoundException.php
(691 B)
📄
Filesystem.php
(10.01 KB)
📄
FilesystemException.php
(70 B)
📄
FilesystemInterface.php
(7.5 KB)
📄
FilesystemNotFoundException.php
(215 B)
📄
Handler.php
(2.53 KB)
📄
InvalidRootException.php
(146 B)
📄
MountManager.php
(17.07 KB)
📄
NotSupportedException.php
(804 B)
📁
Plugin
📄
PluginInterface.php
(344 B)
📄
ReadInterface.php
(1.54 KB)
📄
RootViolationException.php
(151 B)
📄
SafeStorage.php
(744 B)
📄
UnreadableFileException.php
(345 B)
📁
Util
📄
Util.php
(8.38 KB)
Editing: ConfigAwareTrait.php
<?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; } }
Upload File
Create Folder