]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/autoload.php
c5f664dc81ea0e936be3b77169edce1cd56d50b3
[github/wallabag/wallabag.git] / app / autoload.php
1 <?php
2
3 use Composer\Autoload\ClassLoader;
4 use Doctrine\Common\Annotations\AnnotationRegistry;
5
6 /**
7 * @var ClassLoader
8 */
9 $loader = require __DIR__ . '/../vendor/autoload.php';
10
11 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
12
13 return $loader;