Completed
Push — master ( b7b7cf...637bb5 )
by Kamil
20s
created
src/ServiceContainer/PerformanceExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@
 block discarded – undo
45 45
      */
46 46
     public function load(ContainerBuilder $container, array $config)
47 47
     {
48
-        $definition = new Definition(RuntimeVariadicsCallHandler::class, [E_ALL | E_STRICT]);
49
-        $definition->addTag(CallExtension::CALL_HANDLER_TAG, ['priority' => 100]);
48
+        $definition = new Definition(RuntimeVariadicsCallHandler::class, [ E_ALL | E_STRICT ]);
49
+        $definition->addTag(CallExtension::CALL_HANDLER_TAG, [ 'priority' => 100 ]);
50 50
         $container->setDefinition(CallExtension::CALL_HANDLER_TAG . '.runtime_variadics', $definition);
51 51
     }
52 52
 
Please login to merge, or discard this patch.
src/Testwork/Call/Handler/RuntimeVariadicsCallHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      */
94 94
     private function startErrorAndOutputBuffering(Call $call)
95 95
     {
96
-        $errorHandler = function ($level, $message, $file, $line) {
96
+        $errorHandler = function($level, $message, $file, $line) {
97 97
             if ($this->errorLevelIsNotReportable($level)) {
98 98
                 return false;
99 99
             }
Please login to merge, or discard this patch.