mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-23 15:43:42 +01:00
14 lines
262 B
PHP
Executable File
14 lines
262 B
PHP
Executable File
<?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;
|