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

Break lines before consecutive null coalesce operators as with boolean operators?

Open lkrms opened this issue 1 year ago • 0 comments

Example:

<?php
$foo = bar()
    ?? $baz ?? $qux
    ?? $quux;

Would become:

<?php
$foo = bar()
    ?? $baz
    ?? $qux
    ?? $quux;

lkrms avatar Nov 25 '24 10:11 lkrms