Skip to content

Instantly share code, notes, and snippets.

View ralphmoran's full-sized avatar
🎯
Working on something interesting

Ralph Moran ralphmoran

🎯
Working on something interesting
View GitHub Profile
@ralphmoran
ralphmoran / php-event-listener-example.php
Created February 3, 2021 21:02 — forked from im4aLL/php-event-listener-example.php
PHP event listener simple example
<?php
// Used in https://github.com/im4aLL/roolith-event
class Event {
private static $events = [];
public static function listen($name, $callback) {
self::$events[$name][] = $callback;
}