From cb7185d4d539b6fbde88a52de3f5b3f00663247e Mon Sep 17 00:00:00 2001 From: Steve Bauman Date: Tue, 14 Jan 2025 09:33:44 -0500 Subject: [PATCH] Properly return nullable https://github.com/Webklex/php-imap/pull/506 --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 76cc0613..a6f3cf50 100755 --- a/src/Client.php +++ b/src/Client.php @@ -629,7 +629,7 @@ public function checkFolder(string $folder_path): array /** * Get the current active folder. */ - public function getFolderPath(): string + public function getFolderPath(): ?string { return $this->active_folder; }