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