You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?= "<?php\n" ?>
-
- namespace <?= $namespace_path; ?>\<?= $domain; ?>;
-
- use App\Entity\<?= $domain; ?>\<?= $entity_class ?>;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class <?= $class_name; ?> extends AbstractFactory implements <?= $class_name; ?>Interface
- {
- public function create(): <?= $entity_class ?>Interface
- {
- <?= $entity_variable ?> = new <?= $entity_class ?>();
-
- return <?= $entity_variable ?>;
- }
-
- }
|