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