pretty-php icon indicating copy to clipboard operation
pretty-php copied to clipboard

Break lists that contain multi-line ternary statements?

Open lkrms opened this issue 1 year ago • 0 comments

e.g.

<?php
foo($bar, $qux, $quux
    ? null
    : $quuux);

// vs.

foo(
    $bar,
    $qux,
    $quux
        ? null
        : $quuux
);

lkrms avatar Jan 29 '24 04:01 lkrms