Completed
Pull Request — master (#89)
by Phecho
03:31
created
app/Http/Routes/AdminRoutes.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             'prefix'     => 'admin',
32 32
             'namespace'  => 'Admin',
33 33
             'as'         => 'admin.',
34
-        ], function ($router) {
34
+        ], function($router) {
35 35
             $router->get('/', [
36 36
                 'as'   => 'index',
37 37
                 'uses' => 'DashboardController@indexAction',
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             $router->group([
42 42
                 'as'     => 'settings.',
43 43
                 'prefix' => 'settings',
44
-            ], function ($router) {
44
+            ], function($router) {
45 45
                 $router->get('general', [
46 46
                     'as'   => 'general',
47 47
                     'uses' => 'SettingsController@showGeneralView',
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
                 'uses' => 'DashboardController@indexAction',
38 38
             ]);
39 39
 
40
-             // Settings
40
+                // Settings
41 41
             $router->group([
42 42
                 'as'     => 'settings.',
43 43
                 'prefix' => 'settings',
Please login to merge, or discard this patch.