123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- declare(strict_types=1);
- namespace OCP\App\Events;
- use OCP\EventDispatcher\Event;
- class AppDisableEvent extends Event {
- private string $appId;
-
- public function __construct(string $appId) {
- parent::__construct();
- $this->appId = $appId;
- }
-
- public function getAppId(): string {
- return $this->appId;
- }
- }
|