Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function __construct( |
||
28 | string $taxonName, |
||
29 | string $name, |
||
30 | string $description, |
||
31 | string $slug, |
||
32 | string $price, |
||
33 | string $image |
||
34 | ) { |
||
35 | $this->taxonName = $taxonName; |
||
36 | $this->name = $name; |
||
37 | $this->description = $description; |
||
38 | $this->slug = $slug; |
||
39 | $this->price = $price; |
||
40 | $this->image = $image; |
||
41 | } |
||
85 |