From 7ade1385907089cb4e7cf1434b6257fce7f3adaa Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 4 Feb 2022 20:30:45 +0100 Subject: [PATCH] Fix phpcs --- htdocs/core/class/commonobject.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index 73220505692..8ab59689976 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -2303,7 +2303,7 @@ abstract class CommonObject // Call triggers if (get_class($this) == 'Commande') { $result = $this->call_trigger('ORDER_MODIFY', $user); - }else{ + } else { $result = $this->call_trigger(strtoupper(get_class($this)).'_MODIFY', $user); } if ($result < 0) {