aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/autoload.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2018-10-24 21:02:35 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2018-11-28 22:04:54 +0100
commit6fc95673df5349d682eb6ca6185f894eb711d13a (patch)
treeb825799c92eb8f41b4f55273a6c959125699eea9 /app/autoload.php
parent0f159f8fc1dea68552dbfa845fa9a24a95953018 (diff)
downloadwallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.tar.gz
wallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.tar.zst
wallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.zip
Cleanup
Diffstat (limited to 'app/autoload.php')
-rw-r--r--app/autoload.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/autoload.php b/app/autoload.php
deleted file mode 100644
index c5f664dc..00000000
--- a/app/autoload.php
+++ /dev/null
@@ -1,13 +0,0 @@
1<?php
2
3use Composer\Autoload\ClassLoader;
4use Doctrine\Common\Annotations\AnnotationRegistry;
5
6/**
7 * @var ClassLoader
8 */
9$loader = require __DIR__ . '/../vendor/autoload.php';
10
11AnnotationRegistry::registerLoader([$loader, 'loadClass']);
12
13return $loader;