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 (#95)
by Patrick
02:16
created
src/Entity/Marathon/MarathonAppEntity.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -114,7 +114,8 @@  discard block
 block discarded – undo
114 114
 
115 115
         if (isset($dataArray['upgradeStrategy'])) {
116 116
             $this->upgradeStrategy = new UpgradeStrategy((array) $dataArray['upgradeStrategy']);
117
-        } else {
117
+        }
118
+        else {
118 119
             $this->upgradeStrategy = new UpgradeStrategy();
119 120
         }
120 121
 
@@ -129,13 +130,15 @@  discard block
 block discarded – undo
129 130
             ksort($env);
130 131
 
131 132
             $this->env = (object) $env;
132
-        } else {
133
+        }
134
+        else {
133 135
             $this->env = (object) [];
134 136
         }
135 137
 
136 138
         if (isset($dataArray['labels'])) {
137 139
             $this->labels = (object) $dataArray['labels'];
138
-        } else {
140
+        }
141
+        else {
139 142
             $this->labels = (object) [];
140 143
         }
141 144
         MarathonEntityUtils::setPropertyIfExist($dataArray, $this, 'constraints');
Please login to merge, or discard this patch.