aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/autoload.php
diff options
context:
space:
mode:
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;