mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
12 lines
258 B
PHP
Executable File
12 lines
258 B
PHP
Executable File
<?php
|
|
|
|
use Doctrine\Common\Annotations\AnnotationRegistry;
|
|
use Composer\Autoload\ClassLoader;
|
|
|
|
/** @var ClassLoader $loader */
|
|
$loader = require __DIR__.'/../vendor/autoload.php';
|
|
|
|
AnnotationRegistry::registerLoader([$loader, 'loadClass']);
|
|
|
|
return $loader;
|