Merge pull request #19043 from owncloud/fix-php-doc-of-encrypt-all
Function does return void
This commit is contained in:
commit
ae9ea244f2
2 changed files with 1 additions and 3 deletions
|
@ -421,10 +421,9 @@ class Encryption implements IEncryptionModule {
|
||||||
*
|
*
|
||||||
* @param InputInterface $input
|
* @param InputInterface $input
|
||||||
* @param OutputInterface $output write some status information to the terminal during encryption
|
* @param OutputInterface $output write some status information to the terminal during encryption
|
||||||
* @return bool
|
|
||||||
*/
|
*/
|
||||||
public function encryptAll(InputInterface $input, OutputInterface $output) {
|
public function encryptAll(InputInterface $input, OutputInterface $output) {
|
||||||
return $this->encryptAll->encryptAll($input, $output);
|
$this->encryptAll->encryptAll($input, $output);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -141,7 +141,6 @@ interface IEncryptionModule {
|
||||||
*
|
*
|
||||||
* @param InputInterface $input
|
* @param InputInterface $input
|
||||||
* @param OutputInterface $output write some status information to the terminal during encryption
|
* @param OutputInterface $output write some status information to the terminal during encryption
|
||||||
* @return bool
|
|
||||||
* @since 8.2.0
|
* @since 8.2.0
|
||||||
*/
|
*/
|
||||||
public function encryptAll(InputInterface $input, OutputInterface $output);
|
public function encryptAll(InputInterface $input, OutputInterface $output);
|
||||||
|
|
Loading…
Reference in a new issue