Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
12 | public function createTargetFileObject(?string $newObjectFqn = null): AbstractCreator |
||
13 | { |
||
14 | if (null !== $newObjectFqn) { |
||
15 | throw new \RuntimeException('You should not pass a new object FQN to this creator'); |
||
16 | } |
||
17 | $newObjectFqn = $this->projectRootNamespace . '\\Entity\\Repositories\\AbstractEntityRepository'; |
||
18 | |||
19 | return parent::createTargetFileObject($newObjectFqn); |
||
20 | } |
||
22 |