pretty-php
pretty-php copied to clipboard
Break lists that contain multi-line ternary statements?
e.g.
<?php
foo($bar, $qux, $quux
? null
: $quuux);
// vs.
foo(
$bar,
$qux,
$quux
? null
: $quuux
);