terpomoj/pipe

Pipe operator alternative.

v0.1.0 2022-06-09 10:22 UTC

This package is auto-updated.

Last update: 2024-05-09 14:32:34 UTC


README

This is an alternatives to the declined PHP Pipe Operator RFC.

The idea was first introduced by Taylor Otwell on Twitter. I added some feature, such as directly call the function on the piping value, and directly accessing attribute of the piping value.

Usage Examples

Basic Usage

pipe('test@example.com')
    (md5(...))
    (fn ($md5) => 'https://gravatar.com/avatar/' . $md5)
    ->endpipe;

Accessing Object Attribute

pipe('test@example.com')
    (GravatarUrl::make(...))
    ->url // `url` is an attribute of GravatarUrl
    ->endpipe;

Calling Object Method

pipe('test@example.com')
    (GravatarUrl::make(...))
    ->size(200) // `size` is a method of GravatarUrl
    ->endpipe;

License

MIT License