19 lines
470 B
PHP
19 lines
470 B
PHP
<?php
|
|
|
|
namespace KupShop\POSBundle;
|
|
|
|
use KupShop\POSBundle\Util\PosTabInterface;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
class POSBundle extends Bundle
|
|
{
|
|
public function build(ContainerBuilder $container)
|
|
{
|
|
$container->registerForAutoconfiguration(PosTabInterface::class)
|
|
->addTag('kupshop.pos.tab')
|
|
->setPublic(false)
|
|
->setAutowired(true);
|
|
}
|
|
}
|