1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[ticket/11688] Fix docblock

PHPBB3-11688
This commit is contained in:
Vjacheslav Trushkin 2013-07-30 21:02:40 +03:00
parent 212294382d
commit 5eb321d311

View File

@ -249,6 +249,10 @@ class phpbb_cache_driver_file extends phpbb_cache_driver_base
/** /**
* Remove directory * Remove directory
*
* @param string $dir Directory to remove
*
* @return null
*/ */
protected function remove_dir($dir) protected function remove_dir($dir)
{ {
@ -267,6 +271,7 @@ class phpbb_cache_driver_file extends phpbb_cache_driver_base
{ {
continue; continue;
} }
if ($fileInfo->isDir()) if ($fileInfo->isDir())
{ {
$this->remove_dir($fileInfo->getPathname()); $this->remove_dir($fileInfo->getPathname());