cupoftea/chain

Call a chain of methods on an object

v1.2.1 2015-07-11 23:37 UTC

This package is auto-updated.

Last update: 2024-04-12 02:52:26 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version StyleCI License

Chain

Call a chain of methods on an object.

Chain provides an easy way to chain a set of methods on an object.

Chain provides a set of methods to suit your chaining needs. From requiring you class to be an instance of an earlier specified class to getting back the results from each called method, Chain's got it all. For more info, check the Documentation or browse through the full API.

Quickstart

$ composer require cupoftea/chain ^1.2
$chain = new Chain();
$chain->requires(MyInterface::class)
    ->on(MyClass::class))
    ->call('method1', 'method2')
    ->with($parameter1, $parameter2)
    ->run();

$method1_result = $chain->getResult('method1');