Completed
Push — master ( 1e0a7f...79d97e )
by Korotkov
01:54 queued 11s
created
src/WarningHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 {
12 12
     public function execute(): void
13 13
     {
14
-        printf('%s'.PHP_EOL, __CLASS__);
14
+        printf('%s' . PHP_EOL, __CLASS__);
15 15
     }
16 16
 }
Please login to merge, or discard this patch.
src/NoticeHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 {
12 12
     public function execute(): void
13 13
     {
14
-        printf('%s'.PHP_EOL, __CLASS__);
14
+        printf('%s' . PHP_EOL, __CLASS__);
15 15
     }
16 16
 }
Please login to merge, or discard this patch.
src/ErrorHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 {
12 12
     public function execute(): void
13 13
     {
14
-        printf('%s'.PHP_EOL, __CLASS__);
14
+        printf('%s' . PHP_EOL, __CLASS__);
15 15
     }
16 16
 }
Please login to merge, or discard this patch.
tests/ChainOfResponsibilityTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
         $this->chain->execute(ErrorHandler::class);
47 47
         $error = ob_get_clean();
48 48
 
49
-        $this->assertEquals($notice, NoticeHandler::class."\n");
50
-        $this->assertEquals($warning, $notice.WarningHandler::class."\n");
51
-        $this->assertEquals($error, $warning.ErrorHandler::class."\n");
49
+        $this->assertEquals($notice, NoticeHandler::class . "\n");
50
+        $this->assertEquals($warning, $notice . WarningHandler::class . "\n");
51
+        $this->assertEquals($error, $warning . ErrorHandler::class . "\n");
52 52
     }
53 53
 }
Please login to merge, or discard this patch.