| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class CategoryServiceFactory extends ModelFactory |
||
| 13 | { |
||
| 14 | private $service; |
||
| 15 | |||
| 16 | public function __construct(Service $service) |
||
| 17 | { |
||
| 18 | parent::__construct(); |
||
| 19 | |||
| 20 | $this->service = $service; |
||
| 21 | } |
||
| 22 | |||
| 23 | protected static function getClass(): string |
||
| 26 | } |
||
| 27 | |||
| 28 | protected function getDefaults(): array |
||
| 33 |