/usr/share/php/Zend/EventManager/autoload.php is in php-zend-eventmanager 3.2.0-1.
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 | <?php
if (stream_resolve_include_path('Zend/Stdlib/autoload.php')){
include_once 'Zend/Stdlib/autoload.php';
}
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'zend\\eventmanager\\abstractlisteneraggregate' => '/AbstractListenerAggregate.php',
'zend\\eventmanager\\event' => '/Event.php',
'zend\\eventmanager\\eventinterface' => '/EventInterface.php',
'zend\\eventmanager\\eventmanager' => '/EventManager.php',
'zend\\eventmanager\\eventmanagerawareinterface' => '/EventManagerAwareInterface.php',
'zend\\eventmanager\\eventmanagerawaretrait' => '/EventManagerAwareTrait.php',
'zend\\eventmanager\\eventmanagerinterface' => '/EventManagerInterface.php',
'zend\\eventmanager\\eventscapableinterface' => '/EventsCapableInterface.php',
'zend\\eventmanager\\exception\\domainexception' => '/Exception/DomainException.php',
'zend\\eventmanager\\exception\\exceptioninterface' => '/Exception/ExceptionInterface.php',
'zend\\eventmanager\\exception\\invalidargumentexception' => '/Exception/InvalidArgumentException.php',
'zend\\eventmanager\\exception\\invalidcallbackexception' => '/Exception/InvalidCallbackException.php',
'zend\\eventmanager\\exception\\runtimeexception' => '/Exception/RuntimeException.php',
'zend\\eventmanager\\filter\\filterinterface' => '/Filter/FilterInterface.php',
'zend\\eventmanager\\filter\\filteriterator' => '/Filter/FilterIterator.php',
'zend\\eventmanager\\filterchain' => '/FilterChain.php',
'zend\\eventmanager\\lazyeventlistener' => '/LazyEventListener.php',
'zend\\eventmanager\\lazylistener' => '/LazyListener.php',
'zend\\eventmanager\\lazylisteneraggregate' => '/LazyListenerAggregate.php',
'zend\\eventmanager\\listeneraggregateinterface' => '/ListenerAggregateInterface.php',
'zend\\eventmanager\\listeneraggregatetrait' => '/ListenerAggregateTrait.php',
'zend\\eventmanager\\responsecollection' => '/ResponseCollection.php',
'zend\\eventmanager\\sharedeventmanager' => '/SharedEventManager.php',
'zend\\eventmanager\\sharedeventmanagerinterface' => '/SharedEventManagerInterface.php',
'zend\\eventmanager\\sharedeventscapableinterface' => '/SharedEventsCapableInterface.php',
'zend\\eventmanager\\test\\eventlistenerintrospectiontrait' => '/Test/EventListenerIntrospectionTrait.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
}
);
// @codeCoverageIgnoreEnd
|