diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-01-14 18:15:07 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-01-15 09:35:39 +0100 |
commit | 73cd160bfc6e4a1b88f2117eb0c097a91ac5c753 (patch) | |
tree | c5ccc9fa57f243126538ae8d9a2f8c459c08bd8c /app/autoload.php | |
parent | 1d405d0e62a708928bccd2222ebd89d4804231f9 (diff) | |
download | wallabag-73cd160bfc6e4a1b88f2117eb0c097a91ac5c753.tar.gz wallabag-73cd160bfc6e4a1b88f2117eb0c097a91ac5c753.tar.zst wallabag-73cd160bfc6e4a1b88f2117eb0c097a91ac5c753.zip |
Switch to Symfony 3 structure
Diffstat (limited to 'app/autoload.php')
-rw-r--r-- | app/autoload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/autoload.php b/app/autoload.php index 70526bb5..fa582ecd 100644 --- a/app/autoload.php +++ b/app/autoload.php | |||
@@ -8,6 +8,6 @@ use Composer\Autoload\ClassLoader; | |||
8 | */ | 8 | */ |
9 | $loader = require __DIR__.'/../vendor/autoload.php'; | 9 | $loader = require __DIR__.'/../vendor/autoload.php'; |
10 | 10 | ||
11 | AnnotationRegistry::registerLoader(array($loader, 'loadClass')); | 11 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
12 | 12 | ||
13 | return $loader; | 13 | return $loader; |