123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- declare(strict_types=1);
- namespace OCP\Group\Events;
- use OCP\EventDispatcher\Event;
- use OCP\IGroup;
- class BeforeGroupDeletedEvent extends Event {
-
- private $group;
-
- public function __construct(IGroup $group) {
- parent::__construct();
- $this->group = $group;
- }
-
- public function getGroup(): IGroup {
- return $this->group;
- }
- }
|