Compare commits

...

2 Commits

Author SHA1 Message Date
James
cb5a8204da add fix suggested in https://github.com/magento/magento2/issues/31465 2021-01-02 15:52:10 +00:00
James
90457f1fda tidy 2020-12-26 15:41:52 +00:00
2 changed files with 5 additions and 6 deletions

View File

@ -33,9 +33,6 @@ class TestCommand extends Command{
parent::configure(); parent::configure();
} }
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output){ protected function execute(InputInterface $input, OutputInterface $output){
$output->writeln(get_class($this->_productAction)); $output->writeln(get_class($this->_productAction));
} }

View File

@ -1,5 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd"> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<module name="Test_Test" setup_version="0.0.0"/> xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
<module name="Test_Test" setup_version="0.0.0">
<sequence>Magento_Catalog</sequence>
</module>
</config> </config>