pretty-php
pretty-php copied to clipboard
Break lines before consecutive null coalesce operators as with boolean operators?
Example:
<?php
$foo = bar()
?? $baz ?? $qux
?? $quux;
Would become:
<?php
$foo = bar()
?? $baz
?? $qux
?? $quux;