Actions
Task #101777
closedEnsure short list syntax is used
Start date:
2023-08-28
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
13
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
The short list syntax has been introduced with PHP 7.1. Instead of using list($foo, $bar)
it is possible to use [$foo, $bar]
instead. All occurrences of list()
have been migrated to the short list syntax with #90002, but a new usage has been introduced in at least one class.
We should extend our php-cs-fixer configuration to detect list()
usage.
Actions