Completed
Push — master ( b3e496...323960 )
by Pablo
02:28
created
tests/Behaviour/WithPostMiddleWareHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 
6 6
 namespace Bruli\EventBusBundleTests\Behaviour;
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      */
20 20
     public function handle(CommandInterface $command)
21 21
     {
22
-        file_put_contents(__DIR__. '/' . self::FILE_TEST , 'testing');
23
-        file_put_contents(__DIR__. '/' . self::FILE_SECOND_TEST , 'testing');
22
+        file_put_contents(__DIR__.'/'.self::FILE_TEST, 'testing');
23
+        file_put_contents(__DIR__.'/'.self::FILE_SECOND_TEST, 'testing');
24 24
     }
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
tests/Behaviour/PostSecondMiddleWareHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 
6 6
 namespace Bruli\EventBusBundleTests\Behaviour;
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function handle(CommandInterface $command)
20 20
     {
21
-        file_put_contents(__DIR__. '/' . self::FILE_TEST , 'testing');
22
-        unlink(__DIR__. '/' . WithPostMiddleWareHandler::FILE_SECOND_TEST);
21
+        file_put_contents(__DIR__.'/'.self::FILE_TEST, 'testing');
22
+        unlink(__DIR__.'/'.WithPostMiddleWareHandler::FILE_SECOND_TEST);
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
tests/Behaviour/WithPreMiddleWareHandler.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 
6 6
 namespace Bruli\EventBusBundleTests\Behaviour;
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function handle(CommandInterface $command)
20 20
     {
21
-        file_put_contents(__DIR__. '/' . self::FILE_TEST , 'testing');
22
-        unlink(__DIR__. '/'. PreMiddleWareHandler::FILE_TEST);
23
-        unlink(__DIR__. '/'. PreSecondMiddleWareHandler::FILE_TEST);
21
+        file_put_contents(__DIR__.'/'.self::FILE_TEST, 'testing');
22
+        unlink(__DIR__.'/'.PreMiddleWareHandler::FILE_TEST);
23
+        unlink(__DIR__.'/'.PreSecondMiddleWareHandler::FILE_TEST);
24 24
     }
25 25
 }
Please login to merge, or discard this patch.
tests/Behaviour/PreSecondMiddleWareHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 
6 6
 namespace Bruli\EventBusBundleTests\Behaviour;
@@ -18,6 +18,6 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function handle(CommandInterface $command)
20 20
     {
21
-        file_put_contents(__DIR__. '/../Behaviour/' . self::FILE_TEST , 'testing');
21
+        file_put_contents(__DIR__.'/../Behaviour/'.self::FILE_TEST, 'testing');
22 22
     }
23 23
 }
24 24
\ No newline at end of file
Please login to merge, or discard this patch.