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