| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function __construct( |
||
| 24 | string $extends, |
||
| 25 | string $model, |
||
| 26 | string $single, |
||
| 27 | string $plural, |
||
| 28 | string $namespace, |
||
| 29 | string $class, |
||
| 30 | string $type |
||
| 31 | ) { |
||
| 32 | parent::__construct($namespace, $class); |
||
| 33 | |||
| 34 | $this->extends = $extends; |
||
| 35 | $this->model = $model; |
||
| 36 | $this->single = $single; |
||
| 37 | $this->plural = $plural; |
||
| 38 | $this->type = $type; |
||
| 39 | } |
||
| 67 |