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

Improve boolean operator placement

Open lkrms opened this issue 1 year ago • 0 comments

e.g.

<?php
$token->Flags
    |= Flag::FOO  // Move `|=` to the previous line when `--operators-first` is given
    | Flag::BAR;

lkrms avatar Aug 24 '24 06:08 lkrms