mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-20 23:00:16 -05:00
BpNode: Use all uppercase for operator names
This commit is contained in:
parent
fe8f4d8c15
commit
3ba4842933
1 changed files with 3 additions and 3 deletions
|
|
@ -506,13 +506,13 @@ class BpNode extends Node
|
|||
{
|
||||
switch ($this->operator) {
|
||||
case self::OP_AND:
|
||||
return 'and';
|
||||
return 'AND';
|
||||
break;
|
||||
case self::OP_OR:
|
||||
return 'or';
|
||||
return 'OR';
|
||||
break;
|
||||
case self::OP_NOT:
|
||||
return 'not';
|
||||
return 'NOT';
|
||||
break;
|
||||
default:
|
||||
// MIN
|
||||
|
|
|
|||
Loading…
Reference in a new issue