mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
12 lines
275 B
PHP
12 lines
275 B
PHP
<?php
|
|
|
|
use Doctrine\Common\Annotations\AnnotationRegistry;
|
|
use Composer\Autoload\ClassLoader;
|
|
|
|
/** @var ClassLoader $loader */
|
|
$loader = require __DIR__.'/../../../../../vendor/autoload.php';
|
|
|
|
AnnotationRegistry::registerLoader(array($loader, 'loadClass'));
|
|
|
|
return $loader;
|