mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-20 23:00:16 -05:00
BpNode: clean up, remove legacy constructor comments
This commit is contained in:
parent
472e31e55e
commit
8de13f06b2
1 changed files with 2 additions and 9 deletions
|
|
@ -23,15 +23,8 @@ class BpNode extends Node
|
||||||
|
|
||||||
protected $className = 'process';
|
protected $className = 'process';
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(BusinessProcess $bp, $object)
|
||||||
BusinessProcess $bp,
|
{
|
||||||
$object
|
|
||||||
/*
|
|
||||||
$name,
|
|
||||||
$operator,
|
|
||||||
$child_names
|
|
||||||
*/
|
|
||||||
) {
|
|
||||||
$this->bp = $bp;
|
$this->bp = $bp;
|
||||||
$this->name = $object->name;
|
$this->name = $object->name;
|
||||||
$this->setOperator($object->operator);
|
$this->setOperator($object->operator);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue