Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | final class EventWasMoved |
||
12 | { |
||
13 | private $identity; |
||
14 | private $slot; |
||
15 | |||
16 | 3 | public function __construct( |
|
17 | Identity $identity, |
||
18 | Slot $slot |
||
19 | ) { |
||
20 | 3 | $this->identity = $identity; |
|
21 | 3 | $this->slot = $slot; |
|
22 | 3 | } |
|
23 | |||
24 | 2 | public function identity(): Identity |
|
27 | } |
||
28 | |||
29 | 2 | public function slot(): Slot |
|
32 | } |
||
33 | } |
||
34 |