Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php
-
- namespace Lc\PietroBundle\Factory\Thematic;
-
- use App\Entity\Thematic\Thematic;
- use Lc\PietroBundle\Model\Thematic\ThematicInterface;
-
- class ThematicFactory
- {
- public function create(): ThematicInterface
- {
- $thematic = new Thematic();
-
- return $thematic;
- }
-
- }
|