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 ( 571668...20e334 )
by Steffen
03:11
created
src/Response/ValidResponse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,8 +190,8 @@
 block discarded – undo
190 190
      */
191 191
     public function getBody()
192 192
     {
193
-        $xmlString = file_get_contents(__DIR__ . '/../../resources/eurofxref-daily-valid.xml');
194
-        $xmlResource = fopen('data://application/xml,' . $xmlString,'r');
193
+        $xmlString = file_get_contents(__DIR__.'/../../resources/eurofxref-daily-valid.xml');
194
+        $xmlResource = fopen('data://application/xml,'.$xmlString, 'r');
195 195
         return new Stream($xmlResource);
196 196
     }
197 197
 
Please login to merge, or discard this patch.
src/Response/UsdMissingResponse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,8 +190,8 @@
 block discarded – undo
190 190
      */
191 191
     public function getBody()
192 192
     {
193
-        $xmlString = file_get_contents(__DIR__ . '/../../resources/eurofxref-daily-usd-missing.xml');
194
-        $xmlResource = fopen('data://application/xml,' . $xmlString,'r');
193
+        $xmlString = file_get_contents(__DIR__.'/../../resources/eurofxref-daily-usd-missing.xml');
194
+        $xmlResource = fopen('data://application/xml,'.$xmlString, 'r');
195 195
         return new Stream($xmlResource);
196 196
     }
197 197
 
Please login to merge, or discard this patch.
src/Response/DateMissingResponse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,8 +190,8 @@
 block discarded – undo
190 190
      */
191 191
     public function getBody()
192 192
     {
193
-        $xmlString = file_get_contents(__DIR__ . '/../../resources/eurofxref-daily-date-missing.xml');
194
-        $xmlResource = fopen('data://application/xml,' . $xmlString,'r');
193
+        $xmlString = file_get_contents(__DIR__.'/../../resources/eurofxref-daily-date-missing.xml');
194
+        $xmlResource = fopen('data://application/xml,'.$xmlString, 'r');
195 195
         return new Stream($xmlResource);
196 196
     }
197 197
 
Please login to merge, or discard this patch.