@@ -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 | * This file is part of the PerformanceExtension package. |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | /** |
93 | 93 | * @return string|null |
94 | 94 | */ |
95 | - private function getBufferedStdOut(): ?string |
|
95 | + private function getBufferedStdOut(): ? string |
|
96 | 96 | { |
97 | 97 | return ob_get_length() ? ob_get_contents() : null; |
98 | 98 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | private function startErrorAndOutputBuffering(Call $call): void |
104 | 104 | { |
105 | - $errorHandler = function ($level, $message, $file, $line) { |
|
105 | + $errorHandler = function($level, $message, $file, $line) { |
|
106 | 106 | if ($this->errorLevelIsNotReportable($level)) { |
107 | 107 | return false; |
108 | 108 | } |
@@ -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 | * This file is part of the PerformanceExtension package. |
@@ -51,8 +51,8 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function load(ContainerBuilder $container, array $config): void |
53 | 53 | { |
54 | - $definition = new Definition(RuntimeVariadicsCallHandler::class, [E_ALL | E_STRICT]); |
|
55 | - $definition->addTag(CallExtension::CALL_HANDLER_TAG, ['priority' => 100]); |
|
54 | + $definition = new Definition(RuntimeVariadicsCallHandler::class, [ E_ALL | E_STRICT ]); |
|
55 | + $definition->addTag(CallExtension::CALL_HANDLER_TAG, [ 'priority' => 100 ]); |
|
56 | 56 | $container->setDefinition(CallExtension::CALL_HANDLER_TAG . '.runtime_variadics', $definition); |
57 | 57 | } |
58 | 58 |