Open
Description
Trailing comma after last argument (if they are split into multiple lines):
$this->assertSame(
['' => ['Value must be no less than 5.']],
$result->getErrorMessagesIndexedByPath(),
);
vs
$this->assertSame(
['' => ['Value must be no less than 5.']],
$result->getErrorMessagesIndexedByPath()
);
The first option is already used for array elements, but not automated.
Metadata
Metadata
Assignees
Labels
No labels