mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/11688] Fix docblock
PHPBB3-11688
This commit is contained in:
parent
212294382d
commit
5eb321d311
1 changed files with 5 additions and 0 deletions
5
phpBB/phpbb/cache/driver/file.php
vendored
5
phpBB/phpbb/cache/driver/file.php
vendored
|
@ -249,6 +249,10 @@ class phpbb_cache_driver_file extends phpbb_cache_driver_base
|
|||
|
||||
/**
|
||||
* Remove directory
|
||||
*
|
||||
* @param string $dir Directory to remove
|
||||
*
|
||||
* @return null
|
||||
*/
|
||||
protected function remove_dir($dir)
|
||||
{
|
||||
|
@ -267,6 +271,7 @@ class phpbb_cache_driver_file extends phpbb_cache_driver_base
|
|||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($fileInfo->isDir())
|
||||
{
|
||||
$this->remove_dir($fileInfo->getPathname());
|
||||
|
|
Loading…
Add table
Reference in a new issue