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
Pull Request — master (#191)
by Herbert
13:06
created
src/AuditTrailBehavior.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -177,9 +177,10 @@
 block discarded – undo
177 177
      */
178 178
     protected function cleanAttributesIgnored($attributes)
179 179
     {
180
-        if($this->ignore_timestamps)
181
-            $this->ignored = array_merge($this->ignored, [
180
+        if($this->ignore_timestamps) {
181
+                    $this->ignored = array_merge($this->ignored, [
182 182
                 'created', 'updated', 'created_at', 'updated_at', 'timestamp']);
183
+        }
183 184
 
184 185
         if (sizeof($this->ignored) > 0) {
185 186
             foreach ($attributes as $f => $v) {
Please login to merge, or discard this patch.