Skip to content
Snippets Groups Projects
Commit d5c48547 authored by Björn Schießle's avatar Björn Schießle
Browse files

cast result to bool

parent 9512382a
Branches
No related tags found
No related merge requests found
...@@ -222,6 +222,6 @@ class Helper { ...@@ -222,6 +222,6 @@ class Helper {
// we need php >= 5.3.3 // we need php >= 5.3.3
$result &= version_compare(phpversion(), '5.3.3', '>='); $result &= version_compare(phpversion(), '5.3.3', '>=');
return $result; return (bool) $result;
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment