From 3ba48429338913fe4fb410c96334d7b1b0f595d3 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 22 Jan 2019 11:19:24 +0100 Subject: [PATCH] BpNode: Use all uppercase for operator names --- library/Businessprocess/BpNode.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/Businessprocess/BpNode.php b/library/Businessprocess/BpNode.php index dc0c3fa..89586fa 100644 --- a/library/Businessprocess/BpNode.php +++ b/library/Businessprocess/BpNode.php @@ -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