From 086c622186d47032b583abba79612137744ed9d4 Mon Sep 17 00:00:00 2001 From: James Date: Tue, 12 Jan 2021 14:15:04 +0000 Subject: [PATCH] actually fix --- Command/TestCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Command/TestCommand.php b/Command/TestCommand.php index f2cb5b0..bc5ab5b 100644 --- a/Command/TestCommand.php +++ b/Command/TestCommand.php @@ -34,7 +34,7 @@ class TestCommand extends Command{ } protected function execute(InputInterface $input, OutputInterface $output){ - $output->writeln(get_class($this->_productAction); - $this->_productAction->updateAttributes([1], ['name'=>'nice'], 1]); + $output->writeln(get_class($this->_productAction)); + $this->_productAction->updateAttributes([1], ['name'=>'nice'], 1); } }