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 95cc9a0 commit bc466f0Copy full SHA for bc466f0
src/Group.php
@@ -15,7 +15,7 @@ protected function identifierError($used_identifiers) {
15
protected function validateIdentifiers($used_identifiers) {
16
$members = $this->getPropValue('member') ?: null;
17
$validateIdentifiers = parent::validateIdentifiers($used_identifiers);
18
- $validateMembers = $members !== null && count($members) > 0;
+ $validateMembers = $members === null || count($members) > 0;
19
return $validateIdentifiers && $validateMembers;
20
}
21
0 commit comments