Viewing file: autoload.php (1.06 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php // @codingStandardsIgnoreFile // @codeCoverageIgnoreStart // this is an autogenerated file - do not edit spl_autoload_register( function($class) { static $classes = null; if ($classes === null) { $classes = array( 'theseer\\tokenizer\\exception' => '/Exception.php', 'theseer\\tokenizer\\namespaceuri' => '/NamespaceUri.php', 'theseer\\tokenizer\\namespaceuriexception' => '/NamespaceUriException.php', 'theseer\\tokenizer\\token' => '/Token.php', 'theseer\\tokenizer\\tokencollection' => '/TokenCollection.php', 'theseer\\tokenizer\\tokencollectionexception' => '/TokenCollectionException.php', 'theseer\\tokenizer\\tokenizer' => '/Tokenizer.php', 'theseer\\tokenizer\\xmlserializer' => '/XMLSerializer.php' ); } $cn = strtolower($class); if (isset($classes[$cn])) { require __DIR__ . $classes[$cn]; } }, true, false ); // @codeCoverageIgnoreEnd
|