0
can anyone tell me what am I doing wrong with this code <?php namespace FeedbackAddonControllerIndex; use MagentoFrameworkAppActionContext; use FeedbackAddonModelInsertFactory; class Save extends MagentoFrameworkAppActionAction { /** * @var Test */ protected $_test; protected $_storeManager; public function __construct( Context $context, array $data = , MagentoStoreModelStoreManagerInterface $storeManager, InsertFactory $test ) { $this->_storeManager = $storeManager; $this->_test = $test; parent::__construct($context); } public function execute() { $post = $this->getRequest()->getPostValue(); $test = $this->_test->create(); $data=...