Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 42.86% |
Changes | 0 |
1 | <?php |
||
11 | class PatchManagerEvent extends Event |
||
12 | { |
||
13 | private MatchedPatchOperation $matchedPatchOperation; |
||
14 | |||
15 | private Patchable $subject; |
||
|
|||
16 | |||
17 | 2 | public function __construct(MatchedPatchOperation $matchedPatchOperation, Patchable $subject) |
|
21 | } |
||
22 | |||
23 | public function getMatchedPatchOperation(): MatchedPatchOperation |
||
24 | { |
||
25 | return $this->matchedPatchOperation; |
||
26 | } |
||
27 | |||
28 | public function getSubject(): Patchable |
||
31 | } |
||
32 | } |
||
33 |