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

19 lines
371 B
PHP

<?php
namespace KupShop\OSSVatsBundle;
use KupShop\KupShopBundle\Config;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class OSSVatsBundle extends Bundle
{
public const LOG_TAG_OSS = 'OSS';
public function boot()
{
parent::boot();
$cfg = &Config::get()->getContainer();
$cfg['Order']['Flags']['OSS'] = ['name' => 'OSS'];
}
}