Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 7
CRAP
0.00% covered (danger)
0.00%
0 / 1
AnalyseQuestionConformite
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 7
56
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getAnalyseImpact
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 setAnalyseImpact
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getJustificatif
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 setJustificatif
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getReponseConformite
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 setReponseConformite
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3declare(strict_types=1);
4
5namespace App\Domain\AIPD\Model;
6
7use App\Domain\Registry\Model\ConformiteTraitement\Reponse;
8
9class AnalyseQuestionConformite extends AbstractQuestionConformite
10{
11    protected AnalyseImpact $analyseImpact;
12
13    protected ?string $justificatif;
14
15    protected Reponse $reponseConformite;
16
17    public function __construct(string $question, int $position)
18    {
19        parent::__construct($question, $position);
20    }
21
22    public function getAnalyseImpact(): AnalyseImpact
23    {
24        return $this->analyseImpact;
25    }
26
27    public function setAnalyseImpact(AnalyseImpact $analyseImpact): void
28    {
29        $this->analyseImpact = $analyseImpact;
30    }
31
32    public function getJustificatif(): ?string
33    {
34        return $this->justificatif;
35    }
36
37    public function setJustificatif(?string $justificatif): void
38    {
39        $this->justificatif = $justificatif;
40    }
41
42    public function getReponseConformite(): Reponse
43    {
44        return $this->reponseConformite;
45    }
46
47    public function setReponseConformite(Reponse $reponseConformite): void
48    {
49        $this->reponseConformite = $reponseConformite;
50    }
51}