phug/invoker

Typing-based invoker

Installs: 111

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

pkg:composer/phug/invoker


README

What is Phug Invoker?

Register callbacks with argument class typing and call the invoker to execute only the ones that match a given object.

Installation

Install via Composer

composer require phug/invoker

Usage

class Foo {}
class Bar {}

$invoker = new \Phug\Invoker([
    function (Foo $foo) {
        return 'foo';
    },
    function (Bar $bar) {
        return 'BAR';
    },
]);

$invoker->invoke(new Foo); // ['foo']
$invoker->invoke(new Bar); // ['BAR']