Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php namespace Arcanesoft\Foundation\Http\Routes\Admin; |
||
23 | public function map(Registrar $router) |
||
24 | { |
||
25 | 12 | $this->group(['prefix' => 'settings', 'as' => 'settings.'], function () { |
|
26 | 12 | $this->get('/', 'SettingsController@index') |
|
27 | 12 | ->name('index'); // admin::foundation.settings.index |
|
28 | 12 | }); |
|
29 | 12 | } |
|
30 | } |
||
31 |