Skip to content

Commit 2a6f782

Browse files
committed
Fix CS
1 parent 68a36a3 commit 2a6f782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PropertyAccessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ private function readProperty(array $zval, string $property, bool $ignoreInvalid
404404
try {
405405
$result[self::VALUE] = $object->$name();
406406
} catch (\TypeError $e) {
407-
list($trace) = $e->getTrace();
407+
[$trace] = $e->getTrace();
408408

409409
// handle uninitialized properties in PHP >= 7
410410
if (__FILE__ === $trace['file']

0 commit comments

Comments
 (0)