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 ( 45f4d9...6d5d06 )
by D
03:35 queued 01:17
created
src/Value/IntegerValue.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\Value;
4 4
 
5 5
 class IntegerValue
Please login to merge, or discard this patch.
src/Writer/WriterInterface.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\Writer;
4 4
 
5 5
 use DQNEO\FizzBuzzEnterpriseEdition\Value\StringValue;
Please login to merge, or discard this patch.
src/Writer/StdoutWriter.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\Writer;
4 4
 
5 5
 use DQNEO\FizzBuzzEnterpriseEdition\Value\StringValue;
@@ -13,6 +13,6 @@  discard block
 block discarded – undo
13 13
 
14 14
     public function writeln(StringValue $string)
15 15
     {
16
-        fwrite(STDOUT, $string . StringValue::NEW_LINE);
16
+        fwrite(STDOUT, $string.StringValue::NEW_LINE);
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
src/Writer/StderrWriter.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\Writer;
4 4
 
5 5
 use DQNEO\FizzBuzzEnterpriseEdition\Value\StringValue;
@@ -13,6 +13,6 @@  discard block
 block discarded – undo
13 13
 
14 14
     public function writeln(StringValue $string)
15 15
     {
16
-        fwrite(STDERR, $string . StringValue::NEW_LINE);
16
+        fwrite(STDERR, $string.StringValue::NEW_LINE);
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
src/Console/Command.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 DQNEO\FizzBuzzEnterpriseEdition\Application\FizzBuzzApplication;
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         $logic = new FizzBuzzLogic(new IntegerValue(3), new IntegerValue(5));
22 22
 
23 23
         $fizzbuzz = new FizzBuzzApplication($logic, $writer);
24
-        $rangeIterator = new RangeIterator(new IntegerValue(1), new IntegerValue((int)$argv[1]));
24
+        $rangeIterator = new RangeIterator(new IntegerValue(1), new IntegerValue((int) $argv[1]));
25 25
         $fizzbuzz->run($rangeIterator);
26 26
 
27 27
         return 0;
Please login to merge, or discard this patch.
src/Logic/FizzBuzzLogic.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.