Skip to content

Instantly share code, notes, and snippets.

@candrasetiadi
Last active January 7, 2019 17:22
Show Gist options
  • Save candrasetiadi/8180f900927aa9d990f9d8c93816d6b8 to your computer and use it in GitHub Desktop.
Save candrasetiadi/8180f900927aa9d990f9d8c93816d6b8 to your computer and use it in GitHub Desktop.
candra-jabar-digital-service
<?php
class Pipeline
{
public static function make_pipeline(...$funcs)
{
return function($arg) use ($funcs)
{
foreach ($funcs as $item) {
$arg = $item($arg);
}
return $arg;
};
}
}
$fun = Pipeline::make_pipeline(function($x) { return $x * 3; }, function($x) { return $x + 1; },
function($x) { return $x / 2; });
echo $fun(3); # should print 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment