OpenXE/classes/Modules/RetailPriceTemplate/Bootstrap.php

30 lines
707 B
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?php
namespace Xentral\Modules\RetailPriceTemplate;
use Xentral\Core\DependencyInjection\ContainerInterface;
use Xentral\Modules\RetailPriceTemplate\Service\RetailPriceTemplateService;
final class Bootstrap
{
/**
* @return array
*/
public static function registerServices()
{
return [
'RetailPriceTemplateService' => 'onInitRetailPriceTemplateService',
];
}
/**
* @param ContainerInterface $container
*
* @return RetailPriceTemplateService
*/
public static function onInitRetailPriceTemplateService(ContainerInterface $container)
{
return new RetailPriceTemplateService($container->get('Database'));
}
}