diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2017-10-23 11:09:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-23 11:09:17 +0200 |
commit | 1953a872932a63792293b4aec087880265ba89f7 (patch) | |
tree | fd16599e737fcdaf193c933ef3ec4a4ee248b117 /app/autoload.php | |
parent | d83d25dadec2c38460a32d96f5d2903426fec9d3 (diff) | |
parent | 702f2d67d60ca963492b90dad74cb5f8dcc84e51 (diff) | |
download | wallabag-1953a872932a63792293b4aec087880265ba89f7.tar.gz wallabag-1953a872932a63792293b4aec087880265ba89f7.tar.zst wallabag-1953a872932a63792293b4aec087880265ba89f7.zip |
Merge pull request #3011 from wallabag/2.3
wallabag 2.3.0
Diffstat (limited to 'app/autoload.php')
-rw-r--r-- | app/autoload.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/autoload.php b/app/autoload.php index fa582ecd..c5f664dc 100644 --- a/app/autoload.php +++ b/app/autoload.php | |||
@@ -1,12 +1,12 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use Doctrine\Common\Annotations\AnnotationRegistry; | ||
4 | use Composer\Autoload\ClassLoader; | 3 | use Composer\Autoload\ClassLoader; |
4 | use Doctrine\Common\Annotations\AnnotationRegistry; | ||
5 | 5 | ||
6 | /** | 6 | /** |
7 | * @var ClassLoader $loader | 7 | * @var ClassLoader |
8 | */ | 8 | */ |
9 | $loader = require __DIR__.'/../vendor/autoload.php'; | 9 | $loader = require __DIR__ . '/../vendor/autoload.php'; |
10 | 10 | ||
11 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); | 11 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
12 | 12 | ||