mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
add missing return
This commit is contained in:
parent
7042b5bf1f
commit
19edb29cc3
1 changed files with 2 additions and 1 deletions
|
|
@ -38,9 +38,10 @@ class Files {
|
|||
* @brief Recusive deletion of folders
|
||||
* @param string $dir path to the folder
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
static function rmdirr( $dir ) {
|
||||
\OC_Helper::rmdirr( $dir );
|
||||
return \OC_Helper::rmdirr( $dir );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue