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 ( 26125c...2b5c8b )
by Marc
03:02
created
src/Entity/Marathon/AppEntity/PortDefinition.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,8 @@
 block discarded – undo
27 27
         if (isset($aData['labels']))
28 28
         {
29 29
             $this->labels = (object) $aData['labels'];
30
-        } else {
30
+        }
31
+        else {
31 32
             $this->labels = (object) [];
32 33
         }
33 34
 
Please login to merge, or discard this patch.
src/Entity/Marathon/MarathonAppEntity.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,14 +134,16 @@
 block discarded – undo
134 134
         if (isset($aData['env']))
135 135
         {
136 136
             $this->env = (object) $aData['env'];
137
-        } else {
137
+        }
138
+        else {
138 139
             $this->env = (object) [];
139 140
         }
140 141
 
141 142
         if (isset($aData['labels']))
142 143
         {
143 144
             $this->labels = (object) $aData['labels'];
144
-        } else {
145
+        }
146
+        else {
145 147
             $this->labels = (object) [];
146 148
         }
147 149
         MarathonEntityUtils::setPropertyIfExist($aData, $this, 'constraints');
Please login to merge, or discard this patch.