1
0
mirror of synced 2024-11-22 20:06:01 +03:00
mg-bot-api-client-php/extra/autoloader.php
2019-07-16 15:04:54 +03:00

20 lines
402 B
PHP

<?php
// autoload.php
use Doctrine\Common\Annotations\AnnotationRegistry;
use Composer\Autoload\ClassLoader;
/**
* @var ClassLoader $loader
*/
$autoloadFile = file_exists(__DIR__ . '/../vendor/autoload.php')
? __DIR__ . '/../vendor/autoload.php'
: __DIR__ . '/../../../autoload.php';
$loader = require $autoloadFile;
AnnotationRegistry::registerLoader('class_exists');
return $loader;