Provide a way to delay events & process them asynchronously
If you use composer, add ItkgDelayEventBundle bundle as a dependency to the composer.json of your application
"require": {
"itkg/delay-event-bundle": "dev-master"
},
- Add ItkgDelayEventBundle to your application kernel.
// app/AppKernel.php
<?php
// ...
public function registerBundles()
{
$bundles = array(
// ...
new Itkg\DelayEventBundle\ItkgDelayEventBundle(),
);
}
# Usage
TODO