| 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; | ||
| 19 | public function map(Registrar $router) | ||
| 20 |     { | ||
| 21 | 12 |         $this->group(['prefix' => 'routes', 'as' => 'routes.'], function () { | |
| 22 | 12 |             $this->get('/', [ | |
| 23 | 12 | 'as' => 'index', | |
| 24 | 6 | 'uses' => 'RoutesController@index', | |
| 25 | 6 | ]); | |
| 26 | 12 | }); | |
| 27 | 12 | } | |
| 28 | } | ||
| 29 |