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 ( 6d5d06...a4fe5e )
by D
03:55
created
src/Application/FizzBuzzApplication.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types=1);
2
+declare (strict_types = 1);
3 3
 namespace DQNEO\FizzBuzzEnterpriseEdition\Logic;
4 4
 
5 5
 use DQNEO\FizzBuzzEnterpriseEdition\Entity\AbstractEntity;
Please login to merge, or discard this patch.
src/Console/FizzBuzzCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare (strict_types=1);
2
+declare (strict_types = 1);
3 3
 namespace DQNEO\FizzBuzzEnterpriseEdition\Console;
4 4
 
5 5
 use Symfony\Component\Console\Input\InputArgument;
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $logic = new FizzBuzzLogic(new IntegerValue(3), new IntegerValue(5));
29 29
 
30 30
         $fizzbuzz = new FizzBuzzApplication($logic, $output);
31
-        $rangeIterator = new RangeIterator(new IntegerValue(1), new IntegerValue((int)$to));
31
+        $rangeIterator = new RangeIterator(new IntegerValue(1), new IntegerValue((int) $to));
32 32
         $fizzbuzz->run($rangeIterator);
33 33
 
34 34
     }
Please login to merge, or discard this patch.