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 ( aaffe4...fd9c69 )
by D
02:37
created
tests/FizzBuzzTest.php 1 patch
Spacing   +7 added lines, -7 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;
4 4
 
5 5
 use DQNEO\FizzBuzzEnterpriseEdition\Application\FizzBuzzApplication;
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 use DQNEO\FizzBuzzEnterpriseEdition\Range\RangeIterator;
8 8
 use DQNEO\FizzBuzzEnterpriseEdition\Value\IntegerValue;
9 9
 
10
-require_once __DIR__ . '/MockWriter.php';
10
+require_once __DIR__.'/MockWriter.php';
11 11
 class FizzBuzzTest extends \PHPUnit_Framework_TestCase
12 12
 {
13 13
     public function testNew()
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         $writer = new MockWriter;
24 24
         $logic = new FizzBuzzLogic(new IntegerValue(3), new IntegerValue(5));
25 25
         $fb = new FizzBuzzApplication($logic, $writer);
26
-        $fb->run(new RangeIterator(new IntegerValue(1),new IntegerValue(1)));
26
+        $fb->run(new RangeIterator(new IntegerValue(1), new IntegerValue(1)));
27 27
         $this->assertEquals("1\n", $writer->buf);
28 28
     }
29 29
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         $writer = new MockWriter;
33 33
         $logic = new FizzBuzzLogic(new IntegerValue(3), new IntegerValue(5));
34 34
         $fb = new FizzBuzzApplication($logic, $writer);
35
-        $fb->run(new RangeIterator(new IntegerValue(1),new IntegerValue(2)));
35
+        $fb->run(new RangeIterator(new IntegerValue(1), new IntegerValue(2)));
36 36
         $this->assertEquals("1\n2\n", $writer->buf);
37 37
     }
38 38
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $writer = new MockWriter;
42 42
         $logic = new FizzBuzzLogic(new IntegerValue(3), new IntegerValue(5));
43 43
         $fb = new FizzBuzzApplication($logic, $writer);
44
-        $fb->run(new RangeIterator(new IntegerValue(1),new IntegerValue(3)));
44
+        $fb->run(new RangeIterator(new IntegerValue(1), new IntegerValue(3)));
45 45
         $this->assertEquals("1\n2\nFizz\n", $writer->buf);
46 46
     }
47 47
 
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
         $writer = new MockWriter;
52 52
         $logic = new FizzBuzzLogic(new IntegerValue(3), new IntegerValue(5));
53 53
         $fb = new FizzBuzzApplication($logic, $writer);
54
-        $fb->run(new RangeIterator(new IntegerValue(1),new IntegerValue(16)));
54
+        $fb->run(new RangeIterator(new IntegerValue(1), new IntegerValue(16)));
55 55
 
56
-        $expected ="1
56
+        $expected = "1
57 57
 2
58 58
 Fizz
59 59
 4
Please login to merge, or discard this patch.
tests/MockWriter.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;
4 4
 
5 5
 use DQNEO\FizzBuzzEnterpriseEdition\Value\StringValue;
@@ -16,6 +16,6 @@  discard block
 block discarded – undo
16 16
 
17 17
     public function writeln(StringValue $string)
18 18
     {
19
-        $this->buf .= $string . "\n";
19
+        $this->buf .= $string."\n";
20 20
     }
21 21
 }
22 22
\ No newline at end of file
Please login to merge, or discard this patch.