2018-06-22 09:21:30 +03:00
|
|
|
<?php
|
2019-07-24 17:13:55 +03:00
|
|
|
|
2018-06-22 09:21:30 +03:00
|
|
|
use Composer\Autoload\ClassLoader;
|
|
|
|
use Doctrine\Common\Annotations\AnnotationRegistry;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var ClassLoader $loader
|
|
|
|
*/
|
2019-07-24 17:13:55 +03:00
|
|
|
$loader = require __DIR__.'/../vendor/autoload.php';
|
2018-06-22 09:21:30 +03:00
|
|
|
|
|
|
|
AnnotationRegistry::registerLoader('class_exists');
|
|
|
|
|
|
|
|
return $loader;
|