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.
Passed
Push — master ( 22648e...caa6d4 )
by Steeven
02:11
created
src/Models/Sql/Traits/HierarchicalTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                         ]);
86 86
                 }
87 87
 
88
-                $update[ $this->primaryKey ] = $child->{$this->primaryKey};
88
+                $update[$this->primaryKey] = $child->{$this->primaryKey};
89 89
 
90 90
                 if ($this->qb
91 91
                     ->table($this->table)
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
                         ->update($update = [
101 101
                             'record_right' => $right,
102 102
                         ]);
103
-                    $update[ $this->primaryKey ] = $child->{$this->primaryKey};
103
+                    $update[$this->primaryKey] = $child->{$this->primaryKey};
104 104
                 }
105 105
 
106 106
                 $i++;
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
             ->select($this->table . '.*')
257 257
             ->from($this->table)
258 258
             ->from($this->table . ' AS node')
259
-            ->whereBetween($this->table . '.record_left', [ 'node.record_left', 'node.record_right'])
259
+            ->whereBetween($this->table . '.record_left', ['node.record_left', 'node.record_right'])
260 260
             ->where([
261 261
                 'node.' . $this->primaryKey => $id,
262 262
                 $this->table . '.' . $this->primaryKey . '!=' => $id,
Please login to merge, or discard this patch.