| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function __construct(string $productSlug, string $channelCode, string $title, int $rating, string $comment, string $email) |
||
| 40 | { |
||
| 41 | $this->productSlug = $productSlug; |
||
| 42 | $this->channelCode = $channelCode; |
||
| 43 | $this->title = $title; |
||
| 44 | $this->rating = $rating; |
||
| 45 | $this->comment = $comment; |
||
| 46 | $this->email = $email; |
||
| 47 | } |
||
| 48 | |||
| 79 |