compiler icon indicating copy to clipboard operation
compiler copied to clipboard

Add support for pipelines with `|>` and `?|>`

Open thekid opened this issue 3 months ago • 0 comments

Example:

$user= $name |> trim(...) |> strtolower(...);

// Equivalent of:
$user= strtolower(trim($name));

See #180

thekid avatar Mar 27 '24 12:03 thekid