Files
nextcloud-mail/lib/SetupChecks/MicroTime.php
SebastianKrupinski 800e964c11 feat: check connection performance of mail service
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
2025-02-12 13:31:31 -05:00

19 lines
292 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Mail\SetupChecks;
class MicroTime {
public function getNumeric(): float {
return (float)microtime(true);
}
}