mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-23 15:43:42 +01:00
14 lines
262 B
PHP
14 lines
262 B
PHP
|
<?php
|
||
|
|
||
|
use Doctrine\Common\Annotations\AnnotationRegistry;
|
||
|
use Composer\Autoload\ClassLoader;
|
||
|
|
||
|
/**
|
||
|
* @var ClassLoader $loader
|
||
|
*/
|
||
|
$loader = require __DIR__.'/../vendor/autoload.php';
|
||
|
|
||
|
AnnotationRegistry::registerLoader([$loader, 'loadClass']);
|
||
|
|
||
|
return $loader;
|