xp-framework / compiler

Compiles future PHP to today's PHP.
19 stars 0 forks source link

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

Open thekid opened 5 months ago

thekid commented 5 months ago

Example:

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

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

See #180