mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 00:27:49 -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