Files
kupshop/bundles/KupShop/POSBundle/POSBundle.php
2025-08-02 16:30:27 +02:00

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);
}
}