objective-php / events-handler
Events Handler for ObjectivePHP
Installs: 116 994
Dependents: 4
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 1
Open Issues: 0
Requires
- php: >=7.3
- objective-php/matcher: ^1.0
- objective-php/primitives: ^1.3.0
Requires (Dev)
README
Library topic
Simple events handler meant to work together with our objective-php/matcher.
It allows to bind events using patterns as defined in Matcher documentation (using wildcards and alternatives...)
Concept
Nothing really new here from the events handling point of view. The real specific feature is more related to the way the callbacks are bound to events, thanks to Matcher.
Usage
Callback binding
Binding a callback to an event is quite straight forward:
$eventsHandler = new EventsHandler(); $eventsHandler->bind('event.name', function($event) { echo 'Event ' . $event->getName() . ' was just fired!'); } );
Event triggering
Once again, this is very simple:
$eventsHandler->trigger('event.name'); // will echo 'Event event.name was just fired!'
More documentation to come soon!