e.g., Before formatting: ```php function foo() { bar( baz: 42, qux: 'hello', corge: [1, 2, 3], empty: false, ); bar(baz: 42, qux: 'hello', corge: [1, 2, 3], empty: true); } function bar( int $baz, string $qux, mixed $corge, bool $empty, ) { noop(); } ``` After formatting: ```php function foo() { bar( baz: 42, qux: 'hello', corge: [1, 2, 3], empty:false, ); bar(baz: 42, qux: 'hello', corge: [1, 2, 3], empty:true); } function bar( int $baz, string $qux, mixed $corge, bool $empty, ) { noop(); } ``` This one is baffling to me. Disabling all default passes has no effect.