blob: 53083262c2c76eaa861a3acd25e1472f4ee37937 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | <?php
/* Autoloader for solarium/solarium and its dependencies */
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
\Fedora\Autoloader\Autoload::addPsr4('Solarium\\', __DIR__);
\Fedora\Autoloader\Dependencies::required(array(
    array(
        '/usr/share/php/Symfony3/Component/EventDispatcher/autoload.php',
        '/usr/share/php/Symfony/Component/EventDispatcher/autoload.php',
    ),
));
 |