-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathautoload.php
executable file
·29 lines (29 loc) · 1.01 KB
/
autoload.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'jsontopgnparser' => '/JsonToPgnParser.php',
'chess_json' => '/CHESS_JSON.php',
'board0x88config' => '/Board0x88Config.php',
'dgtgameparser' => '/DGTGameParser.php',
'fenparser0x88' => '/FenParser0x88.php',
'gameparser' => '/GameParser.php',
'movebuilder' => '/MoveBuilder.php',
'moveparser' => '/MoveParser.php',
'parsertest' => '/test/ParserTest.php',
'pgngameparser' => '/PgnGameParser.php',
'pgnparser' => '/PgnParser.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
}
);
// @codeCoverageIgnoreEnd