| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 14 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1);  | 
            ||
| 47 | public function __construct(  | 
            ||
| 48 | UuidInterface $id,  | 
            ||
| 49 | Language $language,  | 
            ||
| 50 | Year $year,  | 
            ||
| 51 | NotEmptyString $questionText,  | 
            ||
| 52 | Answers $answers,  | 
            ||
| 53 | NotEmptyString $feedback  | 
            ||
| 54 |     ) { | 
            ||
| 55 | $this->id = $id;  | 
            ||
| 56 | $this->language = $language;  | 
            ||
| 57 | $this->year = $year;  | 
            ||
| 58 | $this->questionText = $questionText;  | 
            ||
| 59 | $this->answers = $answers;  | 
            ||
| 60 | $this->feedback = $feedback;  | 
            ||
| 61 | }  | 
            ||
| 111 |