Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
16 | public function __construct(string $pkEntity, string $fkEntity) |
||
17 | { |
||
18 | $pkEntity = $this->getPascalCase($this->getSingularize($pkEntity)); |
||
19 | $fkEntity = $this->getPascalCase($this->getSingularize($fkEntity)); |
||
20 | $name = $this->getPluralize($fkEntity); |
||
21 | $item = $this->getCamelCase($this->getPluralize($fkEntity)); |
||
22 | |||
23 | parent::__construct(\compact('pkEntity', 'fkEntity', 'name', 'item')); |
||
24 | } |
||
36 |