/usr/share/php/ezc/Base/autoload.php is in php-zeta-base 1.9-3.
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 | <?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'ezcbase' => '/base.php',
'ezcbaseautoloadexception' => '/exceptions/autoload.php',
'ezcbaseautoloadoptions' => '/options/autoload.php',
'ezcbaseconfigurationinitializer' => '/interfaces/configuration_initializer.php',
'ezcbasedoubleclassrepositoryprefixexception' => '/exceptions/double_class_repository_prefix.php',
'ezcbaseexception' => '/exceptions/exception.php',
'ezcbaseexportable' => '/interfaces/exportable.php',
'ezcbaseextensionnotfoundexception' => '/exceptions/extension_not_found.php',
'ezcbasefeatures' => '/features.php',
'ezcbasefile' => '/file.php',
'ezcbasefileexception' => '/exceptions/file_exception.php',
'ezcbasefilefindcontext' => '/structs/file_find_context.php',
'ezcbasefileioexception' => '/exceptions/file_io.php',
'ezcbasefilenotfoundexception' => '/exceptions/file_not_found.php',
'ezcbasefilepermissionexception' => '/exceptions/file_permission.php',
'ezcbasefunctionalitynotsupportedexception' => '/exceptions/functionality_not_supported.php',
'ezcbaseinit' => '/init.php',
'ezcbaseinitcallbackconfiguredexception' => '/exceptions/init_callback_configured.php',
'ezcbaseinitinvalidcallbackclassexception' => '/exceptions/invalid_callback_class.php',
'ezcbaseinvalidparentclassexception' => '/exceptions/invalid_parent_class.php',
'ezcbasemetadata' => '/metadata.php',
'ezcbasemetadatapearreader' => '/metadata/pear.php',
'ezcbasemetadatatarballreader' => '/metadata/tarball.php',
'ezcbaseoptions' => '/options.php',
'ezcbasepersistable' => '/interfaces/persistable.php',
'ezcbasepropertynotfoundexception' => '/exceptions/property_not_found.php',
'ezcbasepropertypermissionexception' => '/exceptions/property_permission.php',
'ezcbaserepositorydirectory' => '/structs/repository_directory.php',
'ezcbasesettingnotfoundexception' => '/exceptions/setting_not_found.php',
'ezcbasesettingvalueexception' => '/exceptions/setting_value.php',
'ezcbasestruct' => '/struct.php',
'ezcbasevalueexception' => '/exceptions/value.php',
'ezcbasewhateverexception' => '/exceptions/whatever.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd
|