From 3a5419d102f5727f2be4beab2b69a3c6700a8b9f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 29 Oct 2020 23:44:25 +0100 Subject: [PATCH] Continued: - ops, copy-paste mistake MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../classes/resolver/command/class_BaseCommandResolver.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/main/classes/resolver/command/class_BaseCommandResolver.php b/framework/main/classes/resolver/command/class_BaseCommandResolver.php index a7f0e916..f064b30f 100644 --- a/framework/main/classes/resolver/command/class_BaseCommandResolver.php +++ b/framework/main/classes/resolver/command/class_BaseCommandResolver.php @@ -141,9 +141,9 @@ abstract class BaseCommandResolver extends BaseResolver { if (empty($namespace)) { // Then thrown an exception here throw new InvalidArgumentException('Parameter "namespace" is empty'); - } elseif (empty($actionName)) { + } elseif (empty($commandName)) { // Then thrown an exception here - throw new InvalidArgumentException('Parameter "actionName" is empty'); + throw new InvalidArgumentException('Parameter "commandName" is empty'); } // Initiate the instance variable -- 2.39.5