1 | <?php |
||
4 | require_once __DIR__ . '/N98/MagerunBootstrap.php'; |
||
5 | } |
||
6 | |||
7 | try { |
||
8 | return N98\MagerunBootstrap::createApplication(); |
||
9 | } catch (Exception $e) { |
||
10 | printf("%s: %s\n", get_class($e), $e->getMessage()); |
||
11 | if (array_intersect(array('-vvv', '-vv', '-v', '--verbose'), $argv)) { |
||
12 | printf("%s\n", $e->getTraceAsString()); |
||
13 | } |
||
14 | exit(1); |
||
15 | } |
||
16 |