Files
Kanboard-Prod/app/ServiceProvider/Event.php
2014-11-14 22:44:25 -05:00

16 lines
296 B
PHP

<?php
namespace ServiceProvider;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
use Core\Event as EventDispatcher;
class Event implements ServiceProviderInterface
{
public function register(Container $container)
{
$container['event'] = new EventDispatcher;
}
}