No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- <?php
-
- namespace Lc\CaracoleBundle\Factory\Reduction;
-
- use App\Entity\Reduction\ReductionCatalog;
- use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
- use Lc\CaracoleBundle\Model\Reduction\ReductionCatalogInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class ReductionCatalogFactory extends AbstractFactory
- {
-
- public function create(MerchantInterface $merchant): ReductionCatalogInterface
- {
- $reductionCatalog = new ReductionCatalog();
-
- $reductionCatalog->setMerchant($merchant);
-
- return $reductionCatalog;
- }
-
- }
|