Skip to content

Commit

Permalink
More return type corrections.
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Dec 12, 2014
1 parent 276f4f2 commit 34e1052
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Filesystem/File.php
Expand Up @@ -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;
Expand Down Expand Up @@ -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();
}

/**
Expand Down

0 comments on commit 34e1052

Please sign in to comment.