From 34e10523a7af39df7493d38f03c561f3f5a5406f Mon Sep 17 00:00:00 2001 From: euromark Date: Fri, 12 Dec 2014 03:59:45 +0100 Subject: [PATCH] More return type corrections. --- src/Filesystem/File.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Filesystem/File.php b/src/Filesystem/File.php index 4cb3fe3edf7..b26cde85c59 100644 --- a/src/Filesystem/File.php +++ b/src/Filesystem/File.php @@ -490,7 +490,7 @@ public function lastChange() { /** * Returns the current folder. * - * @return Folder Current folder + * @return \Cake\Filesystem\Folder Current folder */ public function folder() { return $this->Folder; @@ -544,10 +544,10 @@ public function mime() { */ public function clearStatCache($all = false) { if ($all === false) { - return clearstatcache(true, $this->path); + clearstatcache(true, $this->path); } - return clearstatcache(); + clearstatcache(); } /**