File: //usr/share/php/Doctrine/Common/Cache/autoload.php
<?php
// @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\\cache\\apccache' => '/ApcCache.php',
'doctrine\\common\\cache\\apcucache' => '/ApcuCache.php',
'doctrine\\common\\cache\\arraycache' => '/ArrayCache.php',
'doctrine\\common\\cache\\cache' => '/Cache.php',
'doctrine\\common\\cache\\cacheprovider' => '/CacheProvider.php',
'doctrine\\common\\cache\\chaincache' => '/ChainCache.php',
'doctrine\\common\\cache\\clearablecache' => '/ClearableCache.php',
'doctrine\\common\\cache\\couchbasebucketcache' => '/CouchbaseBucketCache.php',
'doctrine\\common\\cache\\couchbasecache' => '/CouchbaseCache.php',
'doctrine\\common\\cache\\extmongodbcache' => '/ExtMongoDBCache.php',
'doctrine\\common\\cache\\filecache' => '/FileCache.php',
'doctrine\\common\\cache\\filesystemcache' => '/FilesystemCache.php',
'doctrine\\common\\cache\\flushablecache' => '/FlushableCache.php',
'doctrine\\common\\cache\\invalidcacheid' => '/InvalidCacheId.php',
'doctrine\\common\\cache\\legacymongodbcache' => '/LegacyMongoDBCache.php',
'doctrine\\common\\cache\\memcachecache' => '/MemcacheCache.php',
'doctrine\\common\\cache\\memcachedcache' => '/MemcachedCache.php',
'doctrine\\common\\cache\\mongodbcache' => '/MongoDBCache.php',
'doctrine\\common\\cache\\multideletecache' => '/MultiDeleteCache.php',
'doctrine\\common\\cache\\multigetcache' => '/MultiGetCache.php',
'doctrine\\common\\cache\\multioperationcache' => '/MultiOperationCache.php',
'doctrine\\common\\cache\\multiputcache' => '/MultiPutCache.php',
'doctrine\\common\\cache\\phpfilecache' => '/PhpFileCache.php',
'doctrine\\common\\cache\\prediscache' => '/PredisCache.php',
'doctrine\\common\\cache\\rediscache' => '/RedisCache.php',
'doctrine\\common\\cache\\sqlite3cache' => '/SQLite3Cache.php',
'doctrine\\common\\cache\\version' => '/Version.php',
'doctrine\\common\\cache\\voidcache' => '/VoidCache.php',
'doctrine\\common\\cache\\wincachecache' => '/WinCacheCache.php',
'doctrine\\common\\cache\\xcachecache' => '/XcacheCache.php',
'doctrine\\common\\cache\\zenddatacache' => '/ZendDataCache.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd