coding-standard icon indicating copy to clipboard operation
coding-standard copied to clipboard

Add Disallow assignment in arrays sniff

Open rrehbein opened this issue 1 year ago • 0 comments

Add a sniff to catch assignments within array structures.

Example error:

$foo = [
   $index = ['unexpected assignment here due to typo'],
];

Similar purpose to the SlevomatCodingStandard.ControlStructures.AssignmentInCondition sniff.

rrehbein avatar Mar 27 '24 14:03 rrehbein