Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class Revoked implements Operation |
||
15 | { |
||
16 | private $grantableCollection; |
||
17 | |||
18 | private $owner; |
||
19 | |||
20 | 10 | public function __construct(GrantableOwner $owner, Collection $grantableCollection) |
|
24 | 10 | } |
|
25 | |||
26 | 2 | public function getGrantableCollection(): Collection |
|
27 | { |
||
28 | 2 | return $this->grantableCollection; |
|
29 | } |
||
30 | |||
31 | 2 | public function getOwner(): GrantableOwner |
|
34 | } |
||
35 | } |
||
36 |