123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- declare(strict_types=1);
- namespace OCA\DAV\Events;
- use OCP\EventDispatcher\Event;
- use Sabre\DAV\Server;
- class SabrePluginAuthInitEvent extends Event {
-
- public function __construct(
- private Server $server,
- ) {
- }
-
- public function getServer(): Server {
- return $this->server;
- }
- }
|