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

26 lines
391 B
PHP

<?php
namespace KupShop\QuantityDiscountBundle\Context;
class QuantityDiscountContext
{
/** @var bool|int */
protected $active = true;
/**
* @return bool|int
*/
public function getActive()
{
return $this->active;
}
/**
* @param bool|int|null
*/
public function setActive($active)
{
$this->active = $active;
}
}