mirror of
https://github.com/nextcloud/server.git
synced 2025-03-13 16:03:55 +00:00
19 lines
410 B
PHP
19 lines
410 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\DAV;
|
|
|
|
use OCA\DAV\CalDAV\InvitationResponse\InvitationResponseServer;
|
|
|
|
class ServerFactory {
|
|
|
|
public function createInviationResponseServer(bool $public): InvitationResponseServer {
|
|
return new InvitationResponseServer(false);
|
|
}
|
|
}
|