Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Foo extends Nette\Object
- {
- public $onEvent = array();
- }
- $foo = new Foo;
- $foo->onEvent[] = function($s) { echo $s . ' foo'; };
- $foo->onEvent[] = function($s) { echo $s . ' bar'; };
- $foo->onEvent('hello');
Advertisement
Add Comment
Please, Sign In to add comment