Skip to content

Instantly share code, notes, and snippets.

View Cue2g's full-sized avatar
🐧

Gustavo Blanco Cue2g

🐧
View GitHub Profile
@im4aLL
im4aLL / php-event-listener-example.php
Last active August 18, 2024 18:18
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;
}