- <?php
-
- namespace Lc\CaracoleBundle\Factory\Section;
-
- use App\Entity\Section\Section;
- use Lc\CaracoleBundle\Model\Section\SectionInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class SectionFactory extends AbstractFactory implements SectionFactoryInterface
- {
- public function create(): SectionInterface
- {
- $section = new Section();
-
- return $section;
- }
-
- }
|