From 45de6f8bf54b254cdf72167607f8492cc0065439 Mon Sep 17 00:00:00 2001 From: mokaddem Date: Mon, 28 Jun 2021 20:45:10 +0200 Subject: [PATCH] fix: [command:importer] Fixed variable typo --- src/Command/ImporterCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/ImporterCommand.php b/src/Command/ImporterCommand.php index 30cdc3d..c79ba76 100644 --- a/src/Command/ImporterCommand.php +++ b/src/Command/ImporterCommand.php @@ -161,7 +161,7 @@ class ImporterCommand extends Command 'valueField' => 'id' ])->where(['meta_template_id' => $metaTemplate->id])->toArray(); } else { - $this->io->error("Unkown template for UUID $metaTemplateUUID"); + $this->io->error("Unkown template for UUID {$config['metaTemplateUUID']}"); die(1); } }