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() {