Completed
Push — master ( 5a250e...1f8e5c )
by Phecho
05:43 queued 01:04
created
app/Http/Controllers/Dashboard/ApiController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     public function postUpdateProject(Project $project)
31 31
     {
32
-        if (! $project->update(Binput::except(['_token']))) {
32
+        if (!$project->update(Binput::except(['_token']))) {
33 33
             throw new Exception(trans('dashboard.projects.edit.failure'));
34 34
         }
35 35
 
Please login to merge, or discard this patch.
app/Http/Controllers/DashboardController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $allIssues = Issue::whereBetween('created_at', [
83 83
             $this->startDate->copy()->subDays(30)->format('Y-m-d').' 00:00:00',
84 84
             $this->startDate->format('Y-m-d').' 23:59:59',
85
-        ])->orderBy('created_at', 'desc')->get()->groupBy(function (Issue $issue) {
85
+        ])->orderBy('created_at', 'desc')->get()->groupBy(function(Issue $issue) {
86 86
             return (new Date($issue->created_at))
87 87
                 ->setTimezone($this->dateTimeZone)->toDateString();
88 88
         });
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
         foreach (range(0, 30) as $i) {
92 92
             $date = (new Date($this->startDate))->setTimezone($this->dateTimeZone)->subDays($i);
93 93
 
94
-            if (! isset($allIssues[$date->toDateString()])) {
94
+            if (!isset($allIssues[$date->toDateString()])) {
95 95
                 $allIssues[$date->toDateString()] = [];
96 96
             }
97 97
         }
98 98
 
99 99
         // Sort the array so it takes into account the added days
100
-        $allIssues = $allIssues->sortBy(function ($value, $key) {
100
+        $allIssues = $allIssues->sortBy(function($value, $key) {
101 101
             return strtotime($key);
102 102
         }, SORT_REGULAR, false);
103 103
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
         $allSubscribers = Subscriber::whereBetween('created_at', [
115 115
             $this->startDate->copy()->subDays(30)->format('Y-m-d').' 00:00:00',
116 116
             $this->startDate->format('Y-m-d').' 23:59:59',
117
-        ])->orderBy('created_at', 'desc')->get()->groupBy(function (Subscriber $issue) {
117
+        ])->orderBy('created_at', 'desc')->get()->groupBy(function(Subscriber $issue) {
118 118
             return (new Date($issue->created_at))
119 119
                 ->setTimezone($this->dateTimeZone)->toDateString();
120 120
         });
@@ -123,13 +123,13 @@  discard block
 block discarded – undo
123 123
         foreach (range(0, 30) as $i) {
124 124
             $date = (new Date($this->startDate))->setTimezone($this->dateTimeZone)->subDays($i);
125 125
 
126
-            if (! isset($allSubscribers[$date->toDateString()])) {
126
+            if (!isset($allSubscribers[$date->toDateString()])) {
127 127
                 $allSubscribers[$date->toDateString()] = [];
128 128
             }
129 129
         }
130 130
 
131 131
         // Sort the array so it takes into account the added days
132
-        $allSubscribers = $allSubscribers->sortBy(function ($value, $key) {
132
+        $allSubscribers = $allSubscribers->sortBy(function($value, $key) {
133 133
             return strtotime($key);
134 134
         }, SORT_REGULAR, false);
135 135
 
Please login to merge, or discard this patch.
app/Http/Controllers/ExploreController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         $allIssues = Issue::whereBetween('created_at', [
102 102
             $startDate->copy()->subDays($daysToShow)->format('Y-m-d').' 00:00:00',
103 103
             $startDate->format('Y-m-d').' 23:59:59',
104
-        ])->orderBy('created_at', 'desc')->get()->groupBy(function (Issue $issue) use ($dateTimeZone) {
104
+        ])->orderBy('created_at', 'desc')->get()->groupBy(function(Issue $issue) use ($dateTimeZone) {
105 105
             // If it's scheduled, get the scheduled at date.
106 106
             if ($issue->is_scheduled) {
107 107
                 return (new Date($issue->scheduled_at))
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
         foreach ($issueDays as $i) {
117 117
             $date = (new Date($startDate))->setTimezone($dateTimeZone)->subDays($i);
118 118
 
119
-            if (! isset($allIssues[$date->toDateString()])) {
119
+            if (!isset($allIssues[$date->toDateString()])) {
120 120
                 $allIssues[$date->toDateString()] = [];
121 121
             }
122 122
         }
123 123
 
124 124
         // Sort the array so it takes into account the added days
125
-        $allIssues = $allIssues->sortBy(function ($value, $key) {
125
+        $allIssues = $allIssues->sortBy(function($value, $key) {
126 126
             return strtotime($key);
127 127
         }, SORT_REGULAR, true)->all();
128 128
 
Please login to merge, or discard this patch.
app/Http/Controllers/SignupController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         $invite = Invite::where('code', '=', $code)->first();
45 45
 
46
-        if (! $invite || $invite->claimed()) {
46
+        if (!$invite || $invite->claimed()) {
47 47
             //throw new BadRequestHttpException();
48 48
         }
49 49
 
Please login to merge, or discard this patch.
app/Http/Controllers/SubscribeController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
         $subscriber = Subscriber::where('verify_code', '=', $code)->first();
77 77
 
78
-        if (! $subscriber || $subscriber->verified()) {
78
+        if (!$subscriber || $subscriber->verified()) {
79 79
             throw new BadRequestHttpException();
80 80
         }
81 81
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 
101 101
         $subscriber = Subscriber::where('verify_code', '=', $code)->first();
102 102
 
103
-        if (! $subscriber || ! $subscriber->verified()) {
103
+        if (!$subscriber || !$subscriber->verified()) {
104 104
             throw new BadRequestHttpException();
105 105
         }
106 106
 
Please login to merge, or discard this patch.
app/Http/Middleware/Acceptable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function handle($request, Closure $next, $type)
29 29
     {
30
-        if (! $request->accepts($type)) {
30
+        if (!$request->accepts($type)) {
31 31
             throw new NotAcceptableHttpException();
32 32
         }
33 33
 
Please login to merge, or discard this patch.
app/Http/Middleware/Admin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function handle($request, Closure $next)
46 46
     {
47
-        if (! $this->auth->check() || ($this->auth->check() && ! $this->auth->user()->isAdmin)) {
47
+        if (!$this->auth->check() || ($this->auth->check() && !$this->auth->user()->isAdmin)) {
48 48
             throw new HttpException(401);
49 49
         }
50 50
 
Please login to merge, or discard this patch.
app/Http/Middleware/HasSetting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $settingName = $this->getSettingName($request);
36 36
 
37 37
         try {
38
-            if (! Setting::get($settingName)) {
38
+            if (!Setting::get($settingName)) {
39 39
                 return Redirect::to('install');
40 40
             }
41 41
         } catch (Exception $e) {
Please login to merge, or discard this patch.
app/Http/Middleware/SubscribersConfigured.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function handle($request, Closure $next)
28 28
     {
29
-        if (! subscribers_enabled()) {
29
+        if (!subscribers_enabled()) {
30 30
             return Redirect::route('explore');
31 31
         }
32 32
 
Please login to merge, or discard this patch.