1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- declare(strict_types=1);
- namespace OCP\Group\Events;
- use OCP\EventDispatcher\Event;
- class BeforeGroupCreatedEvent extends Event {
-
- private $name;
-
- public function __construct(string $name) {
- parent::__construct();
- $this->name = $name;
- }
-
- public function getName(): string {
- return $this->name;
- }
- }
|