Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
ConformiteOrganisationEvent | |
0.00% |
0 / 2 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getEvaluation | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace App\Domain\Registry\Symfony\EventSubscriber\Event; |
4 | |
5 | use App\Domain\Registry\Model\ConformiteOrganisation\Evaluation; |
6 | use Symfony\Contracts\EventDispatcher\Event; |
7 | |
8 | class ConformiteOrganisationEvent extends Event |
9 | { |
10 | /** |
11 | * @var Evaluation |
12 | */ |
13 | protected $evaluation; |
14 | |
15 | public function __construct(Evaluation $evaluation) |
16 | { |
17 | $this->evaluation = $evaluation; |
18 | } |
19 | |
20 | public function getEvaluation(): Evaluation |
21 | { |
22 | return $this->evaluation; |
23 | } |
24 | } |