mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
15 lines
296 B
PHP
15 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;
|
|
}
|
|
}
|