Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
12 / 12 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
||
| 1 | <?php |
| 2 | /* |
| 3 | * This file is part of App Project. |
| 4 | * |
| 5 | * For the full copyright and license information, please view the LICENSE |
| 6 | * file that was distributed with this source code. |
| 7 | */ |
| 8 | /** |
| 9 | * Router config. |
| 10 | * |
| 11 | * @see App::router() |
| 12 | * @see https://docs.aplus-framework.com/guides/libraries/mvc/index.html#router-service |
| 13 | */ |
| 14 | return [ |
| 15 | 'default' => [ |
| 16 | 'files' => [ |
| 17 | BOOT_DIR . 'routes.php', |
| 18 | ], |
| 19 | 'auto_options' => false, |
| 20 | 'auto_methods' => false, |
| 21 | 'placeholders' => [], |
| 22 | 'response_instance' => 'default', |
| 23 | 'language_instance' => 'default', |
| 24 | ], |
| 25 | ]; |