phug-php / invoker

Typing-based invoker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Phug Invoker

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']

About

Typing-based invoker

License:MIT License


Languages

Language:PHP 100.0%