From 117d9e69cece6b07c1ac064981339194347229d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Mon, 9 Jul 2018 01:56:31 +0200 Subject: [PATCH] [ticket/15342] Fix comments PHPBB3-15342 --- phpBB/phpbb/storage/adapter/adapter_interface.php | 2 +- phpBB/phpbb/storage/storage.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/phpBB/phpbb/storage/adapter/adapter_interface.php b/phpBB/phpbb/storage/adapter/adapter_interface.php index 66de8c7dc7..a52585a42f 100644 --- a/phpBB/phpbb/storage/adapter/adapter_interface.php +++ b/phpBB/phpbb/storage/adapter/adapter_interface.php @@ -99,7 +99,7 @@ interface adapter_interface /* * Get space available in bytes. * - * @return mixed Returns available space or null when unable to retrieve available space + * @return mixed Returns available space or false when unable to retrieve available space */ public function free_space(); } diff --git a/phpBB/phpbb/storage/storage.php b/phpBB/phpbb/storage/storage.php index f79b5bc32a..ad5d0ed240 100644 --- a/phpBB/phpbb/storage/storage.php +++ b/phpBB/phpbb/storage/storage.php @@ -43,7 +43,7 @@ class storage protected $factory; /** - * @var stringshould be caste + * @var string */ protected $storage_name; @@ -392,7 +392,7 @@ class storage * * @throws \phpbb\storage\exception\exception When can't get available space * - * @return mixed Returns available space or null when unable to retrieve available space + * @return mixed Returns available space or false when unable to retrieve available space */ public function free_space() {