| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php namespace Arcanesoft\Foundation\Http\Routes\System; |
||
| 23 | public function map(Registrar $router) |
||
| 24 | { |
||
| 25 | 12 | $this->group(['prefix' => 'information', 'as' => 'information.'], function () { |
|
| 26 | 12 | $this->get('/', [ |
|
| 27 | 12 | 'as' => 'index', |
|
| 28 | 6 | 'uses' => 'InformationController@index', |
|
| 29 | 6 | ]); |
|
| 30 | 12 | }); |
|
| 31 | 12 | } |
|
| 32 | } |
||
| 33 |