| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | public function __construct( |
||
| 34 | string $taxonName, |
||
| 35 | string $name, |
||
| 36 | ?string $description, |
||
| 37 | string $slug, |
||
| 38 | ?string $price, |
||
| 39 | ?string $image |
||
| 40 | ) { |
||
| 41 | $this->taxonName = $taxonName; |
||
| 42 | $this->name = $name; |
||
| 43 | $this->description = $description; |
||
| 44 | $this->slug = $slug; |
||
| 45 | $this->price = $price; |
||
| 46 | $this->image = $image; |
||
| 47 | } |
||
| 91 |