mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
cast result to bool
This commit is contained in:
parent
9512382ae0
commit
d5c4854708
1 changed files with 1 additions and 1 deletions
|
|
@ -222,6 +222,6 @@ class Helper {
|
|||
// we need php >= 5.3.3
|
||||
$result &= version_compare(phpversion(), '5.3.3', '>=');
|
||||
|
||||
return $result;
|
||||
return (bool) $result;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue