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 ( a6590b...26125c )
by Marc
03:09
created
src/Entity/Marathon/MarathonAppEntity.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,8 @@  discard block
 block discarded – undo
121 121
         if (isset($aData['upgradeStrategy']))
122 122
         {
123 123
             $this->upgradeStrategy = new UpgradeStrategy((array) $aData['upgradeStrategy']);
124
-        } else {
124
+        }
125
+        else {
125 126
             $this->upgradeStrategy = new UpgradeStrategy();
126 127
         }
127 128
 
@@ -133,14 +134,16 @@  discard block
 block discarded – undo
133 134
         if (isset($aData['env']))
134 135
         {
135 136
             $this->env =  (object) $aData['env'];
136
-        } else {
137
+        }
138
+        else {
137 139
             $this->env = (object) [];
138 140
         }
139 141
 
140 142
         if (isset($aData['labels']))
141 143
         {
142 144
             $this->labels = (object) $aData['labels'];
143
-        } else {
145
+        }
146
+        else {
144 147
             $this->labels = (object) [];
145 148
         }
146 149
         MarathonEntityUtils::setPropertyIfExist($aData, $this, 'constraints');
Please login to merge, or discard this patch.