/usr/share/php/League/Flysystem/autoload.php is in php-league-flysystem 1.0.16-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'league\\flysystem\\adapter\\abstractadapter' => '/Adapter/AbstractAdapter.php',
'league\\flysystem\\adapter\\abstractftpadapter' => '/Adapter/AbstractFtpAdapter.php',
'league\\flysystem\\adapter\\ftp' => '/Adapter/Ftp.php',
'league\\flysystem\\adapter\\ftpd' => '/Adapter/Ftpd.php',
'league\\flysystem\\adapter\\local' => '/Adapter/Local.php',
'league\\flysystem\\adapter\\nulladapter' => '/Adapter/NullAdapter.php',
'league\\flysystem\\adapter\\polyfill\\notsupportingvisibilitytrait' => '/Adapter/Polyfill/NotSupportingVisibilityTrait.php',
'league\\flysystem\\adapter\\polyfill\\streamedcopytrait' => '/Adapter/Polyfill/StreamedCopyTrait.php',
'league\\flysystem\\adapter\\polyfill\\streamedreadingtrait' => '/Adapter/Polyfill/StreamedReadingTrait.php',
'league\\flysystem\\adapter\\polyfill\\streamedtrait' => '/Adapter/Polyfill/StreamedTrait.php',
'league\\flysystem\\adapter\\polyfill\\streamedwritingtrait' => '/Adapter/Polyfill/StreamedWritingTrait.php',
'league\\flysystem\\adapter\\synologyftp' => '/Adapter/SynologyFtp.php',
'league\\flysystem\\adapterinterface' => '/AdapterInterface.php',
'league\\flysystem\\config' => '/Config.php',
'league\\flysystem\\configawaretrait' => '/ConfigAwareTrait.php',
'league\\flysystem\\directory' => '/Directory.php',
'league\\flysystem\\exception' => '/Exception.php',
'league\\flysystem\\file' => '/File.php',
'league\\flysystem\\fileexistsexception' => '/FileExistsException.php',
'league\\flysystem\\filenotfoundexception' => '/FileNotFoundException.php',
'league\\flysystem\\filesystem' => '/Filesystem.php',
'league\\flysystem\\filesysteminterface' => '/FilesystemInterface.php',
'league\\flysystem\\handler' => '/Handler.php',
'league\\flysystem\\mountmanager' => '/MountManager.php',
'league\\flysystem\\notsupportedexception' => '/NotSupportedException.php',
'league\\flysystem\\plugin\\abstractplugin' => '/Plugin/AbstractPlugin.php',
'league\\flysystem\\plugin\\emptydir' => '/Plugin/EmptyDir.php',
'league\\flysystem\\plugin\\getwithmetadata' => '/Plugin/GetWithMetadata.php',
'league\\flysystem\\plugin\\listfiles' => '/Plugin/ListFiles.php',
'league\\flysystem\\plugin\\listpaths' => '/Plugin/ListPaths.php',
'league\\flysystem\\plugin\\listwith' => '/Plugin/ListWith.php',
'league\\flysystem\\plugin\\pluggabletrait' => '/Plugin/PluggableTrait.php',
'league\\flysystem\\plugin\\pluginnotfoundexception' => '/Plugin/PluginNotFoundException.php',
'league\\flysystem\\plugininterface' => '/PluginInterface.php',
'league\\flysystem\\readinterface' => '/ReadInterface.php',
'league\\flysystem\\rootviolationexception' => '/RootViolationException.php',
'league\\flysystem\\unreadablefileexception' => '/UnreadableFileException.php',
'league\\flysystem\\util' => '/Util.php',
'league\\flysystem\\util\\contentlistingformatter' => '/Util/ContentListingFormatter.php',
'league\\flysystem\\util\\mimetype' => '/Util/MimeType.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd
|