Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
14 | final class FkResponseBuilder extends AbstractBuilder |
||
15 | { |
||
16 | public function __construct(string $pkEntity, string $fkEntity) |
||
17 | { |
||
18 | $items = $this->getInflector()->items($fkEntity); |
||
19 | $pkEntity = $this->getInflector()->entity($pkEntity); |
||
20 | $fkEntity = $this->getInflector()->entity($fkEntity); |
||
21 | |||
22 | parent::__construct(\compact('pkEntity', 'fkEntity', 'items')); |
||
23 | } |
||
24 | |||
25 | protected function getFileTemplate(): string |
||
28 | } |
||
29 | |||
30 | protected function getPathTemplate(): string |
||
33 | } |
||
34 | } |
||
35 |