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
Push — master ( a01392...7c7dc7 )
by
unknown
05:17
created
src/Controller/Action/PostcodeSearchAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
             $countryName = $country !== null ? $country->getName() : $address->getCountryCode();
63 63
 
64 64
             $postcodeLabel = $address->getPostcode().', '.$countryName;
65
-            $isNew = count(array_filter($addresses, function ($address) use ($postcodeLabel) {
65
+            $isNew = count(array_filter($addresses, function($address) use ($postcodeLabel) {
66 66
                 return $address['postcode'] === $postcodeLabel;
67 67
             })) === 0;
68 68
 
Please login to merge, or discard this patch.
src/Controller/Action/ProvinceSearchAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
             
70 70
             $provinceName = $this->getProvinceName($address);
71 71
             $provinceLabel = ucfirst(strtolower($provinceName)).', '.$countryName;
72
-            $isNew = count(array_filter($addresses, function ($address) use ($provinceLabel) {
72
+            $isNew = count(array_filter($addresses, function($address) use ($provinceLabel) {
73 73
                 return $address['province'] === $provinceLabel;
74 74
             })) === 0;
75 75
 
Please login to merge, or discard this patch.
src/Controller/Action/CitySearchAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
             $countryName = $country !== null ? $country->getName() : $address->getCountryCode();
63 63
 
64 64
             $cityLabel = ucfirst(strtolower($address->getCity())).', '.$countryName;
65
-            $isNew = count(array_filter($addresses, function ($address) use ($cityLabel) {
65
+            $isNew = count(array_filter($addresses, function($address) use ($cityLabel) {
66 66
                 return $address['city'] === $cityLabel;
67 67
             })) === 0;
68 68
 
Please login to merge, or discard this patch.