Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
ConformiteOrganisationEvent
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
6
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
 getEvaluation
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace App\Domain\Registry\Symfony\EventSubscriber\Event;
4
5use App\Domain\Registry\Model\ConformiteOrganisation\Evaluation;
6use Symfony\Contracts\EventDispatcher\Event;
7
8class 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}