What's new
🐛 Fix --config option placed before the command name
# before
$ ecs --config=ecs.php
Run failed: Unknown option: "--config=ecs.php"
# after
$ ecs --config=ecs.php # loads ecs.php and checks normallyRegression from the symfony/console → entropy migration. Default check command is now injected when the first arg is an option.
🐛 Skip AddMissingVarNameFixer for property assignments
-/** @var int $this */
+/** @var int */
$this->value = 1000;Skipped when the variable is followed by ->.