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 64c30be commit 4b96baeCopy full SHA for 4b96bae
src/ConfigElement/Operator/Group.php
@@ -24,7 +24,7 @@ public function getLabeledValue($object)
24
$childs = $this->getChilds();
25
foreach ($childs as $c) {
26
$value = $c->getLabeledValue($object);
27
- if (!empty($value) && !$value->empty && (!method_exists($value, 'isEmpty') || !$value->isEmpty())) {
+ if (!empty($value) && (!property_exists($value, 'empty') || !$value->empty) && (!method_exists($value, 'isEmpty') || !$value->isEmpty())) {
28
$valueArray[] = $value;
29
}
30
0 commit comments