We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 641c573 commit 0fe1251Copy full SHA for 0fe1251
src/Models/GroupModel.php
@@ -81,6 +81,6 @@ public function isValidGroup(string $group): bool
81
{
82
$allowedGroups = array_keys(setting('AuthGroups.groups'));
83
84
- return (bool) (in_array($group, $allowedGroups, true));
+ return in_array($group, $allowedGroups, true);
85
}
86
0 commit comments