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:
parent
212294382d
commit
5eb321d311
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
|
* 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());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user