PHP code example of hindy / event

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

    

hindy / event example snippets


return [
    // Будет вызвана анонимная функция
    ['\Mindy\Controller\BaseController', 'beforeAction', function ($action) {
        var_dump(1);
    }],
    // Если класс is_a и сигнал идентичен, то будет вызвана одноименная функция в классе отправителе
    ['\Mindy\Controller\BaseController', 'beforeAction', ['\Mindy\Controller\BaseController', 'beforeAction']],
    // Метод класса Helper::fooBar будет вызван статически
    ['\Mindy\Controller\BaseController', 'beforeAction', ['\My\Super\Helper', 'fooBar']],
];