Merge pull request #19820 from nextcloud/fix/mismatching-docblock-return-type
Fix mismatching docblock return types
This commit is contained in:
commit
1f7cb027a4
|
@ -91,7 +91,9 @@ interface IVersionBackend {
|
||||||
* @param IUser $user
|
* @param IUser $user
|
||||||
* @param FileInfo $sourceFile
|
* @param FileInfo $sourceFile
|
||||||
* @param int|string $revision
|
* @param int|string $revision
|
||||||
* @return ISimpleFile
|
*
|
||||||
|
* @return File
|
||||||
|
*
|
||||||
* @since 15.0.0
|
* @since 15.0.0
|
||||||
*/
|
*/
|
||||||
public function getVersionFile(IUser $user, FileInfo $sourceFile, $revision): File;
|
public function getVersionFile(IUser $user, FileInfo $sourceFile, $revision): File;
|
||||||
|
|
|
@ -38,7 +38,8 @@ class Version16000Date20190212081545 extends SimpleMigrationStep {
|
||||||
* @param IOutput $output
|
* @param IOutput $output
|
||||||
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
||||||
* @param array $options
|
* @param array $options
|
||||||
* @return null|ISchemaWrapper
|
*
|
||||||
|
* @return ISchemaWrapper
|
||||||
*/
|
*/
|
||||||
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ISchemaWrapper {
|
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ISchemaWrapper {
|
||||||
/** @var ISchemaWrapper $schema */
|
/** @var ISchemaWrapper $schema */
|
||||||
|
|
|
@ -129,7 +129,9 @@ class AllConfig implements \OCP\IConfig {
|
||||||
*
|
*
|
||||||
* @param string $key the key of the value, under which it was saved
|
* @param string $key the key of the value, under which it was saved
|
||||||
* @param mixed $default the default value to be returned if the value isn't set
|
* @param mixed $default the default value to be returned if the value isn't set
|
||||||
* @return mixed the value or $default
|
*
|
||||||
|
* @return bool
|
||||||
|
*
|
||||||
* @since 16.0.0
|
* @since 16.0.0
|
||||||
*/
|
*/
|
||||||
public function getSystemValueBool(string $key, bool $default = false): bool {
|
public function getSystemValueBool(string $key, bool $default = false): bool {
|
||||||
|
@ -141,7 +143,9 @@ class AllConfig implements \OCP\IConfig {
|
||||||
*
|
*
|
||||||
* @param string $key the key of the value, under which it was saved
|
* @param string $key the key of the value, under which it was saved
|
||||||
* @param mixed $default the default value to be returned if the value isn't set
|
* @param mixed $default the default value to be returned if the value isn't set
|
||||||
* @return mixed the value or $default
|
*
|
||||||
|
* @return int
|
||||||
|
*
|
||||||
* @since 16.0.0
|
* @since 16.0.0
|
||||||
*/
|
*/
|
||||||
public function getSystemValueInt(string $key, int $default = 0): int {
|
public function getSystemValueInt(string $key, int $default = 0): int {
|
||||||
|
@ -153,7 +157,9 @@ class AllConfig implements \OCP\IConfig {
|
||||||
*
|
*
|
||||||
* @param string $key the key of the value, under which it was saved
|
* @param string $key the key of the value, under which it was saved
|
||||||
* @param mixed $default the default value to be returned if the value isn't set
|
* @param mixed $default the default value to be returned if the value isn't set
|
||||||
* @return mixed the value or $default
|
*
|
||||||
|
* @return string
|
||||||
|
*
|
||||||
* @since 16.0.0
|
* @since 16.0.0
|
||||||
*/
|
*/
|
||||||
public function getSystemValueString(string $key, string $default = ''): string {
|
public function getSystemValueString(string $key, string $default = ''): string {
|
||||||
|
|
|
@ -55,7 +55,7 @@ class EnforcementState implements JsonSerializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string[]
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function isEnforced(): bool {
|
public function isEnforced(): bool {
|
||||||
return $this->enforced;
|
return $this->enforced;
|
||||||
|
|
|
@ -400,7 +400,8 @@ class Database extends ABackend
|
||||||
* get the number of disabled users in a group
|
* get the number of disabled users in a group
|
||||||
*
|
*
|
||||||
* @param string $search
|
* @param string $search
|
||||||
* @return int|bool
|
*
|
||||||
|
* @return int
|
||||||
*/
|
*/
|
||||||
public function countDisabledInGroup(string $gid): int {
|
public function countDisabledInGroup(string $gid): int {
|
||||||
$this->fixDI();
|
$this->fixDI();
|
||||||
|
|
|
@ -317,7 +317,7 @@ class Session implements IUserSession, Emitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return mixed
|
* @return null|string
|
||||||
*/
|
*/
|
||||||
public function getImpersonatingUserID(): ?string {
|
public function getImpersonatingUserID(): ?string {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue