Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Xentral\Modules\EbayPayment;
|
||||
|
||||
use Xentral\Core\DependencyInjection\ContainerInterface;
|
||||
use Xentral\Modules\EbayPayment\Service\EbayPaymentDocumentService;
|
||||
|
||||
final class Bootstrap
|
||||
{
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public static function registerServices(): array
|
||||
{
|
||||
return [
|
||||
EbayPaymentDocumentService::class => 'onInitEbayPaymentDocumentService',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ContainerInterface $container
|
||||
*
|
||||
* @return EbayPaymentDocumentService
|
||||
*/
|
||||
public static function onInitEbayPaymentDocumentService(ContainerInterface $container): EbayPaymentDocumentService
|
||||
{
|
||||
return new EbayPaymentDocumentService($container->get('Database'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user