ryanhs/hook

small hook library

1.0.4 2015-02-04 09:21 UTC

This package is not auto-updated.

Last update: 2024-04-27 14:22:42 UTC


README

small hook library

Installation

you can download this with composer (packagist)

composer require ryanhs/hook

example 1

require 'vendor/autoload.php'; // composer autoload

use \Ryanhs\Hook\Hook;

Hook::on('init', function(){ echo 'hello'; });
/*
.
.
.
*/

Hook::call('init');

License

MIT License