Completed
Pull Request — master (#76)
by Phecho
10:13 queued 05:51
created
app/Http/Routes/GroupsRoutes.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,12 +52,12 @@
 block discarded – undo
52 52
             'setting'    => 'app_name',
53 53
             'as'         => 'groups.',
54 54
         ], function ($router) {
55
-           $router->get('{owner_path}', [
55
+            $router->get('{owner_path}', [
56 56
                 'as'   => 'group_show',
57 57
                 'uses' => 'GroupsController@showAction',
58 58
             ])->where('owner_path', '[a-zA-z.0-9_\-]+');
59 59
 
60
-           $router->get('{owner_path}/edit', [
60
+            $router->get('{owner_path}/edit', [
61 61
                 'as'   => 'group_edit',
62 62
                 'uses' => 'GroupsController@editAction',
63 63
             ])->where('owner_path', '[a-zA-z.0-9_\-]+');
Please login to merge, or discard this patch.