Completed
Pull Request — master (#101)
by Phecho
04:42
created
app/Http/Routes/DashboardRoutes.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 'as'     => 'activities.',
92 92
                 'prefix' => 'activities',
93 93
                 ], function ($router) {
94
-                   $router->get('/', [
94
+                    $router->get('/', [
95 95
                     'as'   => 'index',
96 96
                     'uses' => 'ActivityController@showActivities',
97 97
                 ]);
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                 'as'     => 'milestones.',
103 103
                 'prefix' => 'milestones',
104 104
                 ], function ($router) {
105
-                   $router->get('/', [
105
+                    $router->get('/', [
106 106
                     'as'   => 'index',
107 107
                     'uses' => 'MilestoneController@showMilestones',
108 108
                 ]);
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
                 'as'     => 'merge_requests.',
114 114
                 'prefix' => 'merge_requests',
115 115
                 ], function ($router) {
116
-                   $router->get('/', [
116
+                    $router->get('/', [
117 117
                     'as'   => 'index',
118 118
                     'uses' => 'MergeRequestController@showMergeRequests',
119 119
                 ]);
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                 'as'     => 'snippets.',
125 125
                 'prefix' => 'snippets',
126 126
                 ], function ($router) {
127
-                   $router->get('/', [
127
+                    $router->get('/', [
128 128
                     'as'   => 'index',
129 129
                     'uses' => 'SnippetController@showSnippets',
130 130
                 ]);
Please login to merge, or discard this patch.
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.
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.
app/Http/Routes/AdminRoutes.php 1 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.
app/Models/Owner.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -84,16 +84,16 @@
 block discarded – undo
84 84
         return $this->hasMany(Project::class, 'owner_id', 'id');
85 85
     }
86 86
 
87
-     /**
88
-     * Find project under this owner by path, or throw an exception.
89
-     *
90
-     * @param string   $path
91
-     * @param string[] $columns
92
-     *
93
-     * @throws \Illuminate\Database\Eloquent\ModelNotFoundException
94
-     *
95
-     * @return \Gitamin\Models\User
96
-     */
87
+        /**
88
+         * Find project under this owner by path, or throw an exception.
89
+         *
90
+         * @param string   $path
91
+         * @param string[] $columns
92
+         *
93
+         * @throws \Illuminate\Database\Eloquent\ModelNotFoundException
94
+         *
95
+         * @return \Gitamin\Models\User
96
+         */
97 97
     public function project($path, $columns = ['*'])
98 98
     {
99 99
         $project = Project::where('owner_id', '=', $this->id)->where('path', '=', $path)->first($columns);
Please login to merge, or discard this patch.