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
Branch master (9c3470)
by O2System
04:07
created
src/Models/Sql/DataObjects/Result/Row.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
 
62 62
     public function offsetGet($offset)
63 63
     {
64
-        if($this->offsetExists($offset)) {
64
+        if ($this->offsetExists($offset)) {
65 65
             return parent::offsetGet($offset);
66 66
         } elseif (null !== ($result = $this->__call($offset))) {
67 67
             return $result;
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         if (method_exists($model, $method)) {
80 80
             $model->row = $this;
81 81
 
82
-            if(false !== ($result = call_user_func_array([&$model, $method], $args))) {
82
+            if (false !== ($result = call_user_func_array([&$model, $method], $args))) {
83 83
                 $this->offsetSet($method, $result);
84 84
 
85 85
                 return $result;
Please login to merge, or discard this patch.