Completed
Push — master ( 07a4ce...cfed93 )
by Phecho
03:37 queued 21s
created
app/Http/Controllers/RepositoryController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Gitamin\Http\Controllers;
13 13
 
14 14
 use Gitamin\Facades\Setting;
15
-use Gitamin\Models\Project;
16 15
 use Gitter\Client;
17 16
 use Illuminate\Routing\Controller;
18 17
 use Illuminate\Support\Facades\View;
Please login to merge, or discard this patch.
app/Presenters/IssuePresenter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Gitamin\Presenters;
13 13
 
14
-use Gitamin\Facades\Setting;
15 14
 use Gitamin\Presenters\Traits\TimestampsTrait;
16 15
 use GrahamCampbell\Markdown\Facades\Markdown;
17 16
 use Jenssegers\Date\Date;
Please login to merge, or discard this patch.
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/Handlers/Commands/Issue/AddIssueCommandHandler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Gitamin\Http\Controllers;
13 13
 
14 14
 use Gitamin\Facades\Setting;
15
-use Gitamin\Models\Project;
16 15
 use Gitter\Client;
17 16
 use Illuminate\Routing\Controller;
18 17
 use Illuminate\Support\Facades\View;
Please login to merge, or discard this patch.
app/Http/Controllers/Dashboard/UserController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use AltThree\Validator\ValidationException;
15 15
 use Gitamin\Models\User;
16
-use Gitamin\Models\Role;
17
-use Gitamin\Models\Permission;
18 16
 use GrahamCampbell\Binput\Facades\Binput;
19 17
 use Illuminate\Routing\Controller;
20 18
 use Illuminate\Support\Facades\Auth;
Please login to merge, or discard this patch.
app/Http/Controllers/FeedController.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -22,24 +22,24 @@
 block discarded – undo
22 22
 class FeedController extends Controller
23 23
 {
24 24
     /**
25
-    * Instance of Feed.
26
-    *
27
-    * @var Roumen\Feed\Facades\Feed
28
-    */
25
+     * Instance of Feed.
26
+     *
27
+     * @var Roumen\Feed\Facades\Feed
28
+     */
29 29
     private $feed;
30 30
 
31 31
     /**
32
-    * Whether it is a RSS Feed.
33
-    *
34
-    * @var bool
35
-    */
32
+     * Whether it is a RSS Feed.
33
+     *
34
+     * @var bool
35
+     */
36 36
     private $isRss;
37 37
 
38 38
     /**
39
-    * Create a new feed controller instance.
40
-    *
41
-    * @return void
42
-    */
39
+     * Create a new feed controller instance.
40
+     *
41
+     * @return void
42
+     */
43 43
     public function __construct()
44 44
     {
45 45
         $this->feed = Feed::make();
Please login to merge, or discard this patch.
app/Composers/AppComposer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Gitamin\Composers;
13 13
 
14 14
 use Gitamin\Facades\Setting;
15
-use GrahamCampbell\Markdown\Facades\Markdown;
16 15
 use Illuminate\Contracts\View\View;
17 16
 use Illuminate\Support\Facades\Config;
18 17
 
Please login to merge, or discard this patch.
app/Http/Controllers/AuthController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,6 @@
 block discarded – undo
15 15
 use Illuminate\Routing\Controller;
16 16
 use Illuminate\Support\Facades\Auth;
17 17
 use Illuminate\Support\Facades\Redirect;
18
-use Illuminate\Support\Facades\Request;
19
-use Illuminate\Support\Facades\Session;
20 18
 use Illuminate\Support\Facades\View;
21 19
 
22 20
 class AuthController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/ProjectsController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-    * Show the form or adding a new resource.
36
-    *
37
-    * return \Illuminate\Http\Response
38
-    */
35
+     * Show the form or adding a new resource.
36
+     *
37
+     * return \Illuminate\Http\Response
38
+     */
39 39
     public function new()
40 40
     {
41 41
         $teamId = 1;
Please login to merge, or discard this patch.