PHP code example of ttyz / messagebus

1. Go to this page and download the library: Download ttyz/messagebus 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/ */

    

ttyz / messagebus example snippets



namespace MessageBus;

$bus = new MessageBus();

$bus->subscribe('some.event', function (Event $event) {
    $params = $event->getParams();
    // do something
});

$bus->fire(new BusEvent('some.event', ['data']));