jnjxp / purple
Iterate tasks on items and collections
dev-develop
2016-07-12 21:45 UTC
This package is auto-updated.
Last update: 2024-10-26 08:39:42 UTC
README
execute tasks on collections
<?php use Jnjxp\Purple; /** * A traversable collection of data */ class Collection implements IteratorAggregate { protected $data = [1,2,3,4]; public function getIterator() { return new ArrayIterator($this->data); } } /** * A task to execute on each item in the collection */ class EchoParamTask { public function __invoke($value, $key) { echo ($key > 0) ? "+ $value\n" : " $value\n"; } } /** * A task to execute on the collection as a whole */ class SumParamsTask { public function __invoke($collection) { $sum = array_sum(iterator_to_array($collection)); echo "---\n"; echo " $sum\n"; } } /** * A function to resolve an object from a spec */ $resolver = function ($spec) { if (is_string($spec)) { return new $spec; } return $spec; }; // Create a runner with the resolver $runner = new Purple\Runner($resolver); // Add tasks $runner->task(Collection::class) // Add a task w/ collection ->each(EchoParamTask::class) // Add a task for each item ->all(SumParamsTask::class); // Add a task for the whole $runner(); // Execute tasks /** * Output: * * 1 * + 2 * + 3 * + 4 * --- * 10 * */