Fix: Missing colon in nullable return type declaration

This commit is contained in:
WLTBAgent
2026-02-16 16:24:41 +00:00
parent 983ccabd8a
commit 53b0bd01f0

View File

@@ -487,7 +487,7 @@ class GoogleAnalyticsService {
/**
* Ensure Nextcloud folder exists
*/
private function ensureNextcloudFolder(string $path) ?\OCP\Files\Folder {
private function ensureNextcloudFolder(string $path): ?\OCP\Files\Folder {
$userFolder = \OC::$server->getUserFolder();
if (!$userFolder->nodeExists($path)) {