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
Branch 0.x (f91465)
by Jakub
08:30
created
examples/get_payment.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
 include __DIR__ . '/../vendor/autoload.php';
4 4
 $yaml = new \Symfony\Component\Yaml\Parser();
5
-$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__.'/settings.yml'));
5
+$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__ . '/settings.yml'));
6 6
 
7 7
 try {
8 8
     $httpClient = new Http\Adapter\Guzzle6\Client(new \GuzzleHttp\Client([
Please login to merge, or discard this patch.
examples/refund_payment.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
 include __DIR__ . '/../vendor/autoload.php';
4 4
 $yaml = new \Symfony\Component\Yaml\Parser();
5
-$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__.'/settings.yml'));
5
+$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__ . '/settings.yml'));
6 6
 
7 7
 try {
8 8
     $httpClient = new Http\Adapter\Guzzle6\Client(new \GuzzleHttp\Client([
Please login to merge, or discard this patch.
examples/cancel_payment.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
 include __DIR__ . '/../vendor/autoload.php';
4 4
 $yaml = new \Symfony\Component\Yaml\Parser();
5
-$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__.'/settings.yml'));
5
+$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__ . '/settings.yml'));
6 6
 
7 7
 try {
8 8
     $httpClient = new Http\Adapter\Guzzle6\Client(new \GuzzleHttp\Client([
Please login to merge, or discard this patch.
examples/capture_payment.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
 include __DIR__ . '/../vendor/autoload.php';
4 4
 $yaml = new \Symfony\Component\Yaml\Parser();
5
-$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__.'/settings.yml'));
5
+$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__ . '/settings.yml'));
6 6
 
7 7
 try {
8 8
     $httpClient = new Http\Adapter\Guzzle6\Client(new \GuzzleHttp\Client([
Please login to merge, or discard this patch.
examples/create_payment.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
 include __DIR__ . '/../vendor/autoload.php';
4 4
 $yaml = new \Symfony\Component\Yaml\Parser();
5
-$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__.'/settings.yml'));
5
+$settings = \Symfony\Component\Yaml\Yaml::parse(file_get_contents(__DIR__ . '/settings.yml'));
6 6
 
7 7
 try {
8 8
     $httpClient = new Http\Adapter\Guzzle6\Client(new \GuzzleHttp\Client([
Please login to merge, or discard this patch.
src/Vipps.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -270,12 +270,12 @@
 block discarded – undo
270 270
           'X-Request-Id' => (string) $this->requestID,
271 271
           'X-TimeStamp' => (string) new DataTime(),
272 272
           'X-Source-Address' => getenv('HTTP_CLIENT_IP')
273
-            ?:getenv('HTTP_X_FORWARDED_FOR')
274
-            ?:getenv('HTTP_X_FORWARDED')
275
-            ?:getenv('HTTP_FORWARDED_FOR')
276
-            ?:getenv('HTTP_FORWARDED')
277
-            ?:getenv('REMOTE_ADDR')
278
-            ?:gethostname(),
273
+            ?: getenv('HTTP_X_FORWARDED_FOR')
274
+            ?: getenv('HTTP_X_FORWARDED')
275
+            ?: getenv('HTTP_FORWARDED_FOR')
276
+            ?: getenv('HTTP_FORWARDED')
277
+            ?: getenv('REMOTE_ADDR')
278
+            ?: gethostname(),
279 279
         ];
280 280
 
281 281
         // @todo: Investigate more why it's like that.
Please login to merge, or discard this patch.