Completed
Push — master ( cb907a...4d2666 )
by Phecho
03:17
created
app/Http/Routes/DefaultRoutes.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $router->group([
31 31
             'middleware' => ['app.hasSetting'],
32 32
             'setting'    => 'app_name',
33
-        ], function ($router) {
33
+        ], function($router) {
34 34
             $router->get('/', [
35 35
                 'as'   => 'index',
36 36
                 'uses' => 'ExploreController@index',
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         });
40 40
 
41 41
         //Install Area
42
-        $router->group(['middleware' => ['app.isInstalled', 'localize']], function ($router) {
42
+        $router->group(['middleware' => ['app.isInstalled', 'localize']], function($router) {
43 43
             $router->controller('install', 'InstallController');
44 44
         });
45 45
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             'setting'    => 'app_name',
50 50
             'prefix'     => 'explore',
51 51
             'as'         => 'explore.',
52
-        ], function ($router) {
52
+        ], function($router) {
53 53
             $router->get('/', [
54 54
                 'as'   => 'index',
55 55
                 'uses' => 'ExploreController@index',
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         $router->group([
67 67
             'middleware' => 'app.hasSetting',
68 68
             'setting'    => 'app_name',
69
-        ], function ($router) {
69
+        ], function($router) {
70 70
             $router->get('/atom/{namespace?}', [
71 71
                 'as'   => 'feed.atom',
72 72
                 'uses' => 'FeedController@atomAction',
Please login to merge, or discard this patch.
app/Http/Controllers/ExploreController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         $allIssues = Issue::whereBetween('created_at', [
62 62
             $startDate->copy()->subDays($daysToShow)->format('Y-m-d').' 00:00:00',
63 63
             $startDate->format('Y-m-d').' 23:59:59',
64
-        ])->orderBy('created_at', 'desc')->get()->groupBy(function (Issue $issue) use ($dateTimeZone) {
64
+        ])->orderBy('created_at', 'desc')->get()->groupBy(function(Issue $issue) use ($dateTimeZone) {
65 65
             // If it's scheduled, get the scheduled at date.
66 66
             if ($issue->is_scheduled) {
67 67
                 return (new Date($issue->scheduled_at))
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         }
83 83
 
84 84
         // Sort the array so it takes into account the added days
85
-        $allIssues = $allIssues->sortBy(function ($value, $key) {
85
+        $allIssues = $allIssues->sortBy(function($value, $key) {
86 86
             return strtotime($key);
87 87
         }, SORT_REGULAR, true)->all();
88 88
 
Please login to merge, or discard this patch.
app/Models/Group.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Gitamin\Models;
13 13
 
14
-use Illuminate\Support\Facades\Auth;
15
-use Illuminate\Database\Eloquent\Model;
16
-
17 14
 class Group extends ProjectNamespace
18 15
 {
19 16
     protected $table = 'namespaces';
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,6 +39,6 @@
 block discarded – undo
39 39
      */
40 40
     public function scopeMine($query)
41 41
     {
42
-    	//return $query->where('owner_id', Auth::user()->id);
42
+        //return $query->where('owner_id', Auth::user()->id);
43 43
     }
44 44
 }
Please login to merge, or discard this patch.
app/Http/Controllers/Controller.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Illuminate\Foundation\Bus\DispatchesJobs;
15 15
 use Illuminate\Routing\Controller as BaseController;
16 16
 use Gitamin\Models\Project;
17
-use Gitamin\Models\ProjectNamespace;
18 17
 
19 18
 
20 19
 class Controller extends BaseController
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@
 block discarded – undo
23 23
 
24 24
     public function getProject($namespace, $path)
25 25
     {
26
-    	$project = Project::leftJoin('namespaces', function($join) {
26
+        $project = Project::leftJoin('namespaces', function($join) {
27 27
             $join->on('projects.namespace_id', '=', 'namespaces.id');
28 28
         })->where('projects.path', '=', $path)->where('namespaces.path', '=', $namespace)->first(['projects.*']);
29 29
 
30
-    	return $project;
30
+        return $project;
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
app/Http/Controllers/Projects/IssuesController.php 3 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,6 @@
 block discarded – undo
78 78
     /**
79 79
      * Display the specified resource.
80 80
      *
81
-     * @param  int  $id
82 81
      * @return \Illuminate\Http\Response
83 82
      */
84 83
     public function show($namespace, $project, Issue $issue)
Please login to merge, or discard this patch.
Unused Use Statements   -7 removed lines patch added patch discarded remove patch
@@ -3,19 +3,12 @@
 block discarded – undo
3 3
 namespace Gitamin\Http\Controllers\Projects;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use Illuminate\Foundation\Bus\DispatchesJobs;
7 6
 use Illuminate\Support\Facades\Redirect;
8 7
 use Illuminate\Support\Facades\Auth;
9 8
 use Illuminate\Support\Facades\View;
10 9
 use Gitamin\Http\Controllers\Controller;
11 10
 use GrahamCampbell\Binput\Facades\Binput;
12 11
 use Gitamin\Commands\Issue\AddIssueCommand;
13
-use Gitamin\Commands\Issue\RemoveIssueCommand;
14
-use Gitamin\Commands\Issue\UpdateIssueCommand;
15
-use Gitamin\Models\Project;
16
-use Gitamin\Models\ProjectNamespace;
17
-use Gitamin\Models\Group;
18
-use Gitamin\Models\Tag;
19 12
 use Gitamin\Models\Issue;
20 13
 
21 14
 class IssuesController extends Controller
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $project = $this->getProject($namespace, $project_path);
60 60
         $issueData = Binput::get('issue');
61 61
 
62
-         try {
62
+            try {
63 63
             $issueData['author_id'] = Auth::user()->id;
64 64
             $issueData['project_id'] = $project->id;
65 65
             $issue = $this->dispatchFromArray(AddIssueCommand::class, $issueData);
Please login to merge, or discard this patch.
app/Models/Issue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
     {
126 126
         $statuses = trans('gitamin.issues.status');
127 127
 
128
-        return $statuses[rand(0,2)];
128
+        return $statuses[rand(0, 2)];
129 129
         //return $statuses[$this->state];
130 130
     }
131 131
 
Please login to merge, or discard this patch.
app/Http/Controllers/FeedController.php 3 patches
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * Generates an Atom feed of all issues.
47 47
      *
48
-     * @param \Gitamin\Models\ProjectTeam|null $namespace
48
+     * @param null|ProjectNamespace $namespace
49 49
      *
50 50
      * @return \Illuminate\Http\Response
51 51
      */
@@ -57,7 +57,6 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * Generates a Rss feed of all issues.
59 59
      *
60
-     * @param \Gitamin\Models\ProjectTeam|null $group
61 60
      *
62 61
      * @return \Illuminate\Http\Response
63 62
      */
@@ -71,7 +70,7 @@  discard block
 block discarded – undo
71 70
     /**
72 71
      * Generates an Atom feed of all issues.
73 72
      *
74
-     * @param \Gitamin\Models\ProjectTeam|null $namespace
73
+     * @param ProjectNamespace $namespace
75 74
      * @param bool                             $isRss
76 75
      *
77 76
      * @return \Illuminate\Http\Response
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -22,17 +22,17 @@
 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
-    * Create a new feed controller instance.
33
-    *
34
-    * @return void
35
-    */
32
+     * Create a new feed controller instance.
33
+     *
34
+     * @return void
35
+     */
36 36
     public function __construct()
37 37
     {
38 38
         $this->feed = Feed::make();
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,16 +76,16 @@
 block discarded – undo
76 76
      *
77 77
      * @return \Illuminate\Http\Response
78 78
      */
79
-    public function feedAction(ProjectNamespace &$namespace, $isRss)
79
+    public function feedAction(ProjectNamespace & $namespace, $isRss)
80 80
     {
81 81
         if ($namespace->exists) {
82
-            $namespace->projects->map(function ($project) {
83
-                $project->issues()->visible()->orderBy('created_at', 'desc')->get()->map(function ($issue) use ($isRss) {
82
+            $namespace->projects->map(function($project) {
83
+                $project->issues()->visible()->orderBy('created_at', 'desc')->get()->map(function($issue) use ($isRss) {
84 84
                     $this->feedAddItem($issue, $isRss);
85 85
                 });
86 86
             });
87 87
         } else {
88
-            Issue::visible()->orderBy('created_at', 'desc')->get()->map(function ($issue) use ($isRss) {
88
+            Issue::visible()->orderBy('created_at', 'desc')->get()->map(function($issue) use ($isRss) {
89 89
                 $this->feedAddItem($issue, $isRss);
90 90
             });
91 91
         }
Please login to merge, or discard this patch.