Skip to content

Instantly share code, notes, and snippets.

View stset's full-sized avatar
🏠
Working from home

Alexander Gubkin stset

🏠
Working from home
View GitHub Profile
@stset
stset / php-event-listener-example.php
Created June 4, 2021 08:52 — 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;
}