Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?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'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user