cupoftea/chain
Call a chain of methods on an object
Maintainers
v1.2.1
2015-07-11 23:37 UTC
Requires
- cupoftea/package: ^1.2
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-06-12 07:20:56 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');
