Completed
Push — master ( b3e496...323960 )
by Pablo
02:28
created
tests/Infrastructure/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function registerContainerConfiguration(LoaderInterface $loader)
32 32
     {
33
-        $dir = __DIR__ . '/services.yml';
33
+        $dir = __DIR__.'/services.yml';
34 34
         $loader->load($dir);
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
tests/Behaviour/SingleCommandHandler.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.
tests/Behaviour/WithPreMiddleWareCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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;
Please login to merge, or discard this patch.
tests/Behaviour/CommandBusTest.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Bruli\EventBusBundleTests\Infrastructure\CommandApplication;
6 6
 use Bruli\EventBusBundleTests\Behaviour\SingleCommand;
7 7
 use Bruli\EventBusBundleTests\Behaviour\SingleCommandHandler;
8
-use Mockery\Mock;
9 8
 use PHPUnit\Framework\TestCase;
10 9
 use Symfony\Component\Console\Input\InputInterface;
11 10
 use Symfony\Component\Console\Output\OutputInterface;
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     protected function setUp()
29 29
     {
30
-        $this->app =  new CommandApplication();
30
+        $this->app = new CommandApplication();
31 31
         $this->input = \Mockery::mock(InputInterface::class);
32 32
         $this->outputInterface = \Mockery::mock(OutputInterface::class);
33 33
     }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
         $this->app->doRun($this->input, $this->outputInterface);
43 43
 
44
-        $filename = __DIR__ . '/' . SingleCommandHandler::FILE_TEST;
44
+        $filename = __DIR__.'/'.SingleCommandHandler::FILE_TEST;
45 45
         $this->assertTrue(file_exists($filename));
46 46
 
47 47
         unlink($filename);
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
 
57 57
         $this->app->doRun($this->input, $this->outputInterface);
58 58
 
59
-        $handlerFilename = __DIR__ . '/' . WithPreMiddleWareHandler::FILE_TEST;
60
-        $preHandlerFilename = __DIR__.'/'. PreMiddleWareHandler::FILE_TEST;
61
-        $preSecondHandlerFileName = __DIR__. '/' . PreSecondMiddleWareHandler::FILE_TEST;
59
+        $handlerFilename = __DIR__.'/'.WithPreMiddleWareHandler::FILE_TEST;
60
+        $preHandlerFilename = __DIR__.'/'.PreMiddleWareHandler::FILE_TEST;
61
+        $preSecondHandlerFileName = __DIR__.'/'.PreSecondMiddleWareHandler::FILE_TEST;
62 62
         $this->assertFalse(file_exists($preHandlerFilename));
63 63
         $this->assertFalse(file_exists($preSecondHandlerFileName));
64 64
         $this->assertTrue(file_exists($handlerFilename));
@@ -76,10 +76,10 @@  discard block
 block discarded – undo
76 76
 
77 77
         $this->app->doRun($this->input, $this->outputInterface);
78 78
 
79
-        $handlerFilename = __DIR__ . '/' . WithPostMiddleWareHandler::FILE_TEST;
79
+        $handlerFilename = __DIR__.'/'.WithPostMiddleWareHandler::FILE_TEST;
80 80
         $handlerSecondFilename = __DIR__.'/'.WithPostMiddleWareHandler::FILE_SECOND_TEST;
81
-        $postHandlerFilename = __DIR__.'/'. PostMiddleWareHandler::FILE_TEST;
82
-        $postSecondHandlerFilename = __DIR__.'/'. PostSecondMiddleWareHandler::FILE_TEST;
81
+        $postHandlerFilename = __DIR__.'/'.PostMiddleWareHandler::FILE_TEST;
82
+        $postSecondHandlerFilename = __DIR__.'/'.PostSecondMiddleWareHandler::FILE_TEST;
83 83
         $this->assertFalse(file_exists($handlerFilename));
84 84
         $this->assertFalse(file_exists($handlerSecondFilename));
85 85
         $this->assertTrue(file_exists($postHandlerFilename));
Please login to merge, or discard this patch.
tests/Infrastructure/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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\Infrastructure;
Please login to merge, or discard this patch.
tests/Behaviour/PreMiddleWareHandler.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.
tests/Behaviour/PostMiddleWareHandler.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_TEST);
21
+        file_put_contents(__DIR__.'/'.self::FILE_TEST, 'testing');
22
+        unlink(__DIR__.'/'.WithPostMiddleWareHandler::FILE_TEST);
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
tests/Behaviour/SingleCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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;
Please login to merge, or discard this patch.
tests/Behaviour/WithPostMiddleWareCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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;
Please login to merge, or discard this patch.