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