Completed
Push — master ( 5e386e...10e2c4 )
by Phecho
05:34
created
app/Http/Routes/ProjectsRoutes.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
             'setting'    => 'app_name',
53 53
             'as'         => 'projects.',
54 54
         ], function ($router) {
55
-           $router->get('{owner_path}/{project_path}', [
55
+            $router->get('{owner_path}/{project_path}', [
56 56
                 'as'   => 'project_show',
57 57
                 'uses' => 'ProjectsController@showAction',
58 58
             ])->where('owner_path', '[a-zA-z.0-9_\-]+')->where('project_path', '[a-zA-z.0-9_\-]+');
59 59
 
60
-           $router->get('{owner_path}/{project_path}/edit', [
60
+            $router->get('{owner_path}/{project_path}/edit', [
61 61
                 'as'   => 'project_edit',
62 62
                 'uses' => 'ProjectsController@editAction',
63 63
             ])->where('owner_path', '[a-zA-z.0-9_\-]+')->where('project_path', '[a-zA-z.0-9_\-]+');
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
                 'uses' => 'Projects\\IssuesController@showAction',
91 91
             ])->where('owner_path', '[a-zA-z.0-9_\-]+')->where('project_path', '[a-zA-z.0-9_\-]+');
92 92
 
93
-             //edit
93
+                //edit
94 94
             $router->get('{owner_path}/{project_path}/issues/{issue}/edit', [
95 95
                 'as'   => 'issue_edit',
96 96
                 'uses' => 'Projects\\IssuesController@editAction',
Please login to merge, or discard this patch.