PHP code example of kristengwd / evenement
1. Go to this page and download the library: Download kristengwd/evenement library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kristengwd / evenement example snippets
$emitter = new Evenement\EventEmitter();
$emitter->on('user.created', function (User $user) use ($logger) {
$logger->log(sprintf("User '%s' was created.", $user->getLogin()));
});
$emitter->emit('user.created', array($user));