@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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 |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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 | } |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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 | } |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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 |