Skip to content

Commit ffc6677

Browse files
committed
fix merge
1 parent 3912cdd commit ffc6677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Legacy/SymfonyTestsListenerTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ public function endTest($test, $time)
280280
unlink($this->runsInSeparateProcess);
281281
putenv('SYMFONY_DEPRECATIONS_SERIALIZE');
282282
foreach ($deprecations ? unserialize($deprecations) : [] as $deprecation) {
283-
$error = serialize(['deprecation' => $deprecation[1], 'class' => $className, 'method' => $test->getName(false), 'triggering_file' => $deprecation[2] ?? null], 'files_stack' => $deprecation[3] ?? []]);
283+
$error = serialize(['deprecation' => $deprecation[1], 'class' => $className, 'method' => $test->getName(false), 'triggering_file' => $deprecation[2] ?? null, 'files_stack' => $deprecation[3] ?? []]);
284284
if ($deprecation[0]) {
285285
// unsilenced on purpose
286286
trigger_error($error, \E_USER_DEPRECATED);

0 commit comments

Comments
 (0)