| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class Denier |
||
| 23 | { |
||
| 24 | private $event; |
||
| 25 | |||
| 26 | 11 | public function __construct(Dispatcher $event) |
|
| 27 | { |
||
| 28 | 11 | $this->event = $event; |
|
| 29 | 11 | } |
|
| 30 | |||
| 31 | public function deny(DeniableOwner $owner, Collection $permissions): void |
||
| 38 | 10 | } |
|
| 39 | |||
| 40 | 11 | protected function save(DeniableOwner $owner, PermissionContract $permission): void |
|
| 49 |