|
1234567891011121314151617181920212223 |
- <?php
-
- namespace Lc\CaracoleBundle\Factory\Reduction;
-
- use App\Entity\Reduction\ReductionCatalog;
- use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
- use Lc\CaracoleBundle\Model\Reduction\ReductionCatalogInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class ReductionCatalogFactory extends AbstractFactory implements ReductionCatalogFactoryInterface
- {
- use MerchantFactoryTrait;
-
- public function create(): ReductionCatalogInterface
- {
- $reductionCatalog = new ReductionCatalog();
-
- $reductionCatalog->setMerchant($this->merchant);
-
- return $reductionCatalog;
- }
-
- }
|