mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-16 04:10:09 -07:00
12 lines
258 B
PHP
12 lines
258 B
PHP
<?php
|
|
|
|
use Composer\Autoload\ClassLoader;
|
|
use Doctrine\Common\Annotations\AnnotationRegistry;
|
|
|
|
/** @var ClassLoader $loader */
|
|
$loader = require __DIR__.'/../vendor/autoload.php';
|
|
|
|
AnnotationRegistry::registerLoader([$loader, 'loadClass']);
|
|
|
|
return $loader;
|