]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/autoload.php
Fix documentation wording for matches/notmatches tagging rules
[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;