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