mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-27 19:58:26 -07:00
20 lines
830 B
PHP
20 lines
830 B
PHP
<?php
|
|
/* Autoloader for dev-php/sebastian-linesofcode */
|
|
|
|
if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
|
|
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
|
|
}
|
|
|
|
\Fedora\Autoloader\Autoload::addClassMap(
|
|
[
|
|
'sebastianbergmann\linesofcode\linesofcode' => '/LinesOfCode.php',
|
|
'sebastianbergmann\linesofcode\linecountingvisitor' => '/LineCountingVisitor.php',
|
|
'sebastianbergmann\linesofcode\counter' => '/Counter.php',
|
|
'sebastianbergmann\linesofcode\exception' => '/Exception/Exception.php',
|
|
'sebastianbergmann\linesofcode\illogicalvaluesexception' => '/Exception/IllogicalValuesException.php',
|
|
'sebastianbergmann\linesofcode\negativevalueexception' => '/Exception/NegativeValueException.php',
|
|
'sebastianbergmann\linesofcode\runtimeexception' => '/Exception/RuntimeException.php',
|
|
],
|
|
__DIR__
|
|
);
|