summaryrefslogtreecommitdiff
blob: 3ca8a33da12ea2767cae4f769064afc2d9dabf11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/* Autoloader for dev-php/Text_Template */

if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
    require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
}

\Fedora\Autoloader\Autoload::addClassMap(
    array(
		'sebastianbergmann\\template' => '/Template.php',
		'sebastianbergmann\\template\\exception' => '/exceptions/Exception.php',
		'sebastianbergmann\\template\\invalidargumentexception' => '/exceptions/InvalidArgumentException.php',
		'sebastianbergmann\\template\\runtimeexception' => '/exceptions/RuntimeException.php',
    ),
    __DIR__
);