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 ( d96e23...3d7113 )
by Brett
03:09
created
src/AuditTrailBehavior.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -189,12 +189,12 @@
 block discarded – undo
189 189
      */
190 190
     protected function cleanAttributesOverride($attributes)
191 191
     {
192
-        if (sizeof($this->override) > 0 && sizeof($attributes) >0) {
192
+        if (sizeof($this->override) > 0 && sizeof($attributes) > 0) {
193 193
             foreach ($this->override as $field => $queryParams) {
194 194
                 $newOverrideValues = $this->getNewOverrideValues($attributes[$field], $queryParams);
195 195
                 $saveField = \yii\helpers\ArrayHelper::getValue($queryParams, 'saveField', $field);
196 196
 
197
-                if (count($newOverrideValues) >1) {
197
+                if (count($newOverrideValues) > 1) {
198 198
                     $attributes[$saveField] = implode(', ',
199 199
                                         \yii\helpers\ArrayHelper::map($newOverrideValues, $queryParams['returnField'], $queryParams['returnField'])
200 200
                     );
Please login to merge, or discard this patch.
src/panels/SoapPanel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function getLabel()
38 38
     {
39
-        return $this->getName() . ' <small>(' . count($this->data) . ')</small>';
39
+        return $this->getName().' <small>('.count($this->data).')</small>';
40 40
     }
41 41
 
42 42
     /**
Please login to merge, or discard this patch.
src/messages/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 return [
4 4
     // string, required, root directory of all source files
5
-    'sourcePath' => __DIR__ . '/..',
5
+    'sourcePath' => __DIR__.'/..',
6 6
     // array, required, list of language codes that the extracted messages
7 7
     // should be translated to. For example, ['zh-CN', 'de'].
8 8
     'languages' => ['en', 'nl', 'ru', 'es', 'tr'],
Please login to merge, or discard this patch.