first commit
This commit is contained in:
15
bundles/KupShop/DropshipBundle/DropshipBundle.php
Normal file
15
bundles/KupShop/DropshipBundle/DropshipBundle.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace KupShop\DropshipBundle;
|
||||
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
||||
|
||||
class DropshipBundle extends Bundle
|
||||
{
|
||||
public function build(ContainerBuilder $container)
|
||||
{
|
||||
$container->registerForAutoconfiguration(TransferInterface::class)
|
||||
->addTag('dropship.transfer');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user