mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-05-28 04:34:08 -04:00
Node: fix hasMissingChildren()
This commit is contained in:
parent
e93d626d09
commit
0b6cf208f0
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ abstract class Node
|
|||
|
||||
public function hasMissingChildren()
|
||||
{
|
||||
return count($this->getMissingChildren() > 0);
|
||||
return count($this->getMissingChildren()) > 0;
|
||||
}
|
||||
|
||||
public function getMissingChildren()
|
||||
|
|
|
|||
Loading…
Reference in a new issue