Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 284 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 284 Bytes

PHP Events

simulation of javascript event in php

usage:

use ActionManager\Action;

Action::on('test', function($a = '', $b =''){ return $a; });

Action::on('test', function($a=''){ return "b"; });

$a = Action::trigger('test', '1', '2');

print_r($a); // results: b