1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-01-24 19:51:14 +01:00
2021-05-21 08:49:41 +02:00

29 lines
565 B
PHP

<?php
namespace Xentral\Modules\Calendar;
use Xentral\Core\DependencyInjection\ContainerInterface;
final class Bootstrap
{
/**
* @return array
*/
public static function registerServices()
{
return [
'CalendarService' => 'onInitCalendarService'
];
}
/**
* @param ContainerInterface $container
*
* @return CalendarService
*/
public static function onInitCalendarService(ContainerInterface $container)
{
return new CalendarService($container->get('Database'));
}
}