pretty-php
pretty-php copied to clipboard
Improve boolean operator placement
e.g.
<?php
$token->Flags
|= Flag::FOO // Move `|=` to the previous line when `--operators-first` is given
| Flag::BAR;