19 lines
371 B
PHP
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'];
|
|
}
|
|
}
|