mirror of
https://github.com/nextcloud/mail.git
synced 2026-01-13 20:23:59 +00:00
26 lines
435 B
PHP
26 lines
435 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Mail\Util;
|
|
|
|
use OCP\ServerVersion as OCPServerVersion;
|
|
|
|
class ServerVersion {
|
|
|
|
public function __construct(
|
|
private OCPServerVersion $serverVersion,
|
|
) {
|
|
}
|
|
|
|
public function getMajorVersion(): int {
|
|
return $this->serverVersion->getMajorVersion();
|
|
}
|
|
|
|
}
|