← Back
Editing: autoload.php
<?php // Require require_once __DIR__ . '/../Lexer/autoload.php'; require_once __DIR__ . '/../../../Psr/Cache/autoload.php'; // Suggest // @codingStandardsIgnoreFile // @codeCoverageIgnoreStart // this is an autogenerated file - do not edit spl_autoload_register( function($class) { static $classes = null; if ($classes === null) { $classes = array( 'doctrine\\common\\annotations\\annotation' => '/Annotation.php', 'doctrine\\common\\annotations\\annotation\\attribute' => '/Annotation/Attribute.php', 'doctrine\\common\\annotations\\annotation\\attributes' => '/Annotation/Attributes.php', 'doctrine\\common\\annotations\\annotation\\enum' => '/Annotation/Enum.php', 'doctrine\\common\\annotations\\annotation\\ignoreannotation' => '/Annotation/IgnoreAnnotation.php', 'doctrine\\common\\annotations\\annotation\\namedargumentconstructor' => '/Annotation/NamedArgumentConstructor.php', 'doctrine\\common\\annotations\\annotation\\required' => '/Annotation/Required.php', 'doctrine\\common\\annotations\\annotation\\target' => '/Annotation/Target.php', 'doctrine\\common\\annotations\\annotationexception' => '/AnnotationException.php', 'doctrine\\common\\annotations\\annotationreader' => '/AnnotationReader.php', 'doctrine\\common\\annotations\\annotationregistry' => '/AnnotationRegistry.php', 'doctrine\\common\\annotations\\doclexer' => '/DocLexer.php', 'doctrine\\common\\annotations\\docparser' => '/DocParser.php', 'doctrine\\common\\annotations\\implicitlyignoredannotationnames' => '/ImplicitlyIgnoredAnnotationNames.php', 'doctrine\\common\\annotations\\indexedreader' => '/IndexedReader.php', 'doctrine\\common\\annotations\\phpparser' => '/PhpParser.php', 'doctrine\\common\\annotations\\psrcachedreader' => '/PsrCachedReader.php', 'doctrine\\common\\annotations\\reader' => '/Reader.php', 'doctrine\\common\\annotations\\tokenparser' => '/TokenParser.php' ); } $cn = strtolower($class); if (isset($classes[$cn])) { require __DIR__ . $classes[$cn]; } }, true, false ); // @codeCoverageIgnoreEnd // Files
Save File
Cancel