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 ( 25e67d...a0dd78 )
by Damian
13:21 queued 11s
created
src/DataFetcher/TimePeriodDataFetcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
         $labels = [];
96 96
         foreach ($labelsAux as $label) {
97 97
             if (!in_array($label, ['MonthDate', 'YearDate', 'DateDate'], true)) {
98
-                $labels[] = preg_replace('/(?!^)[A-Z]{2,}(?=[A-Z][a-z])|[A-Z][a-z]/', ' $0', (string)$label);
98
+                $labels[] = preg_replace('/(?!^)[A-Z]{2,}(?=[A-Z][a-z])|[A-Z][a-z]/', ' $0', (string) $label);
99 99
             }
100 100
         }
101 101
         $data->setLabels($labels);
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
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
             $countryName = $country !== null ? $country->getName() : $address->getCountryCode();
61 61
 
62 62
             $cityLabel = ucfirst(strtolower($address->getCity() ?? '')).', '.$countryName;
63
-            $isNew = count(array_filter($addresses, function ($address) use ($cityLabel): bool {
63
+            $isNew = count(array_filter($addresses, function($address) use ($cityLabel): bool {
64 64
                 return $address['city'] === $cityLabel;
65 65
             })) === 0;
66 66
 
Please login to merge, or discard this patch.
src/Controller/Action/ProductSearchAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         /** @var ProductInterface $product */
55 55
         foreach ($searchProducts as $product) {
56 56
             $productLabel = ucfirst(strtolower($product->getName() ?? ''));
57
-            $isNew = count(array_filter($products, function ($product) use ($productLabel): bool {
57
+            $isNew = count(array_filter($products, function($product) use ($productLabel): bool {
58 58
                 return $product['name'] === $productLabel;
59 59
             })) === 0;
60 60
 
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
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
             $provinceName = $this->getProvinceName($address);
68 68
             $provinceLabel = ucfirst(strtolower($provinceName ?? '')).', '.$countryName;
69
-            $isNew = count(array_filter($addresses, function ($address) use ($provinceLabel): bool {
69
+            $isNew = count(array_filter($addresses, function($address) use ($provinceLabel): bool {
70 70
                 return $address['province'] === $provinceLabel;
71 71
             })) === 0;
72 72
 
Please login to merge, or discard this patch.
src/Controller/Action/PostcodeSearchAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
             $countryName = $country !== null ? $country->getName() : $address->getCountryCode();
61 61
 
62 62
             $postcodeLabel = $address->getPostcode().', '.$countryName;
63
-            $isNew = count(array_filter($addresses, function ($address) use ($postcodeLabel): bool {
63
+            $isNew = count(array_filter($addresses, function($address) use ($postcodeLabel): bool {
64 64
                 return $address['postcode'] === $postcodeLabel;
65 65
             })) === 0;
66 66
 
Please login to merge, or discard this patch.