GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( c155dc...2cbc2d )
by Ash
02:51
created
src/APAnalytics.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $aggregate      = [];
69 69
         $model          = $this->namespace.Str::studly(Str::singular($collection)).'Analytic';
70 70
 
71
-        if (! class_exists($model)) {
71
+        if (!class_exists($model)) {
72 72
             throw new InvalidArgumentException("Model {$model} does not exist.");
73 73
         }
74 74
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
                 $intervalFormat = '%Y-%m';
116 116
             }
117 117
 
118
-            $aggregate[] =  [
118
+            $aggregate[] = [
119 119
                 '$group' => [
120 120
                     '_id' => [
121 121
                         '$dateToString' => ['date' => '$created_at', 'format' => $intervalFormat],
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                 $aggregate[] = ['$unwind' => '$'.Str::before($groupBy, '.')];
148 148
             }
149 149
 
150
-            $aggregate[] =  [
150
+            $aggregate[] = [
151 151
                 '$group' => [
152 152
                     '_id'   => '$'.$groupBy,
153 153
                     'count' => [
@@ -167,8 +167,8 @@  discard block
 block discarded – undo
167 167
             ];
168 168
         }
169 169
 
170
-        $data = $model::raw(function ($collection) use ($matchArray, $interval, $aggregate, $groupBy) {
171
-            if ($interval == 'count' && ! $groupBy) {
170
+        $data = $model::raw(function($collection) use ($matchArray, $interval, $aggregate, $groupBy) {
171
+            if ($interval == 'count' && !$groupBy) {
172 172
                 return $collection->count($matchArray);
173 173
             }
174 174
 
@@ -189,11 +189,11 @@  discard block
 block discarded – undo
189 189
      */
190 190
     private function toModels($data, $model = null)
191 191
     {
192
-        if (! $model) {
192
+        if (!$model) {
193 193
             $model = '\Jenssegers\Mongodb\Eloquent\Model';
194 194
         }
195 195
 
196
-        if (! class_exists($model)) {
196
+        if (!class_exists($model)) {
197 197
             throw new InvalidArgumentException("Model {$model} does not exist.");
198 198
         }
199 199
 
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
             return true;
231 231
         }
232 232
 
233
-        if (! $user) {
233
+        if (!$user) {
234 234
             return false;
235 235
         }
236 236
 
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
                 if ($modelId) {
246 246
                     $model = $modelClass::find($modelId);
247 247
 
248
-                    if ($model && ! $model->canViewAnalytic($user)) {
248
+                    if ($model && !$model->canViewAnalytic($user)) {
249 249
                         return false;
250 250
                     }
251 251
                 }
Please login to merge, or discard this patch.