Magento 2 Error












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=array(
'first_name'=> $post['first_name'],
'last_name'=> $post['last_name'],
'email' => $post['email'],
'mobile_no' => $post['mobile_no'],
'feedback_content' => $post['feedback_content']
);

$test->setData($data);

if($test->save())
{
$this->messageManager->addSuccessMessage(__('You saved the data.'));
$templateOptions = array('area' => MagentoFrameworkAppArea::AREA_FRONTEND, 'store' => $this->storeManager->getStore()->getId());
$templateVars = array(
'store' => $this->storeManager->getStore(),
'customer_name' => 'John Doe',
'message' => 'Hello!!.'
);
$from = array('email' => "test@example.com", 'name' => 'Name of Sender');
$this->inlineTranslation->suspend();
$to = array('abc@example.com');

$storeScope = MagentoStoreModelScopeInterface::SCOPE_STORE;
$templateId = $this->scopeConfig->getValue ( 'feedback/custom/email_template', MagentoStoreModelScopeInterface::SCOPE_STORE, $storeId );

$transport = $this->_transportBuilder->setTemplateIdentifier($templateId, $storeScope)->setTemplateOptions($templateOptions)
->setTemplateVars($templateVars)
->setFrom($from)
->addTo($to)
->getTransport();
$transport->sendMessage();
$this->messageManager->addSuccess(__('Mail Sent Successfully'));
$this->inlineTranslation->resume();

}
else
{
$this->messageManager->addErrorMessage(__('Data was not saved.'));
}
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath('*/*/');
return $resultRedirect;
}
}


I am trying to sending mail to the user after saving data but this is generated this error



Fatal error: Uncaught TypeError: Argument 3 passed to FeedbackAddonControllerIndexSaveInterceptor::__construct() must be of the type array, null given, called in /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 111 and defined in /var/www/html/nuluv/generated/code/Feedback/Addon/Controller/Index/Save/Interceptor.php:11 Stack trace: #0 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php(111): FeedbackAddonControllerIndexSaveInterceptor->__construct(Object(MagentoFrameworkAppActionContext), Object(MagentoStoreModelStoreManager), NULL, Object(FeedbackAddonModelInsertFactory)) #1 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/Compiled.php(108): MagentoFrameworkObjectManagerFactoryAbstractFactory->createObject('Feedback\Addon\...', Array) #2 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/ObjectManager.php(56): MagentoFrameworkObjectManagerFactoryCompiled->create('Feedback\Addon\...', in /var/www/html/nuluv/generated/code/Feedback/Addon/Controller/Index/Save/Interceptor.php on line 11








share























  • Try to run following command & then check : php bin/magento s:up && php bin/magento s:di:c

    – Nauman m. Mansuri
    4 mins ago
















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=array(
'first_name'=> $post['first_name'],
'last_name'=> $post['last_name'],
'email' => $post['email'],
'mobile_no' => $post['mobile_no'],
'feedback_content' => $post['feedback_content']
);

$test->setData($data);

if($test->save())
{
$this->messageManager->addSuccessMessage(__('You saved the data.'));
$templateOptions = array('area' => MagentoFrameworkAppArea::AREA_FRONTEND, 'store' => $this->storeManager->getStore()->getId());
$templateVars = array(
'store' => $this->storeManager->getStore(),
'customer_name' => 'John Doe',
'message' => 'Hello!!.'
);
$from = array('email' => "test@example.com", 'name' => 'Name of Sender');
$this->inlineTranslation->suspend();
$to = array('abc@example.com');

$storeScope = MagentoStoreModelScopeInterface::SCOPE_STORE;
$templateId = $this->scopeConfig->getValue ( 'feedback/custom/email_template', MagentoStoreModelScopeInterface::SCOPE_STORE, $storeId );

$transport = $this->_transportBuilder->setTemplateIdentifier($templateId, $storeScope)->setTemplateOptions($templateOptions)
->setTemplateVars($templateVars)
->setFrom($from)
->addTo($to)
->getTransport();
$transport->sendMessage();
$this->messageManager->addSuccess(__('Mail Sent Successfully'));
$this->inlineTranslation->resume();

}
else
{
$this->messageManager->addErrorMessage(__('Data was not saved.'));
}
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath('*/*/');
return $resultRedirect;
}
}


I am trying to sending mail to the user after saving data but this is generated this error



Fatal error: Uncaught TypeError: Argument 3 passed to FeedbackAddonControllerIndexSaveInterceptor::__construct() must be of the type array, null given, called in /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 111 and defined in /var/www/html/nuluv/generated/code/Feedback/Addon/Controller/Index/Save/Interceptor.php:11 Stack trace: #0 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php(111): FeedbackAddonControllerIndexSaveInterceptor->__construct(Object(MagentoFrameworkAppActionContext), Object(MagentoStoreModelStoreManager), NULL, Object(FeedbackAddonModelInsertFactory)) #1 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/Compiled.php(108): MagentoFrameworkObjectManagerFactoryAbstractFactory->createObject('Feedback\Addon\...', Array) #2 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/ObjectManager.php(56): MagentoFrameworkObjectManagerFactoryCompiled->create('Feedback\Addon\...', in /var/www/html/nuluv/generated/code/Feedback/Addon/Controller/Index/Save/Interceptor.php on line 11








share























  • Try to run following command & then check : php bin/magento s:up && php bin/magento s:di:c

    – Nauman m. Mansuri
    4 mins ago














0












0








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=array(
'first_name'=> $post['first_name'],
'last_name'=> $post['last_name'],
'email' => $post['email'],
'mobile_no' => $post['mobile_no'],
'feedback_content' => $post['feedback_content']
);

$test->setData($data);

if($test->save())
{
$this->messageManager->addSuccessMessage(__('You saved the data.'));
$templateOptions = array('area' => MagentoFrameworkAppArea::AREA_FRONTEND, 'store' => $this->storeManager->getStore()->getId());
$templateVars = array(
'store' => $this->storeManager->getStore(),
'customer_name' => 'John Doe',
'message' => 'Hello!!.'
);
$from = array('email' => "test@example.com", 'name' => 'Name of Sender');
$this->inlineTranslation->suspend();
$to = array('abc@example.com');

$storeScope = MagentoStoreModelScopeInterface::SCOPE_STORE;
$templateId = $this->scopeConfig->getValue ( 'feedback/custom/email_template', MagentoStoreModelScopeInterface::SCOPE_STORE, $storeId );

$transport = $this->_transportBuilder->setTemplateIdentifier($templateId, $storeScope)->setTemplateOptions($templateOptions)
->setTemplateVars($templateVars)
->setFrom($from)
->addTo($to)
->getTransport();
$transport->sendMessage();
$this->messageManager->addSuccess(__('Mail Sent Successfully'));
$this->inlineTranslation->resume();

}
else
{
$this->messageManager->addErrorMessage(__('Data was not saved.'));
}
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath('*/*/');
return $resultRedirect;
}
}


I am trying to sending mail to the user after saving data but this is generated this error



Fatal error: Uncaught TypeError: Argument 3 passed to FeedbackAddonControllerIndexSaveInterceptor::__construct() must be of the type array, null given, called in /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 111 and defined in /var/www/html/nuluv/generated/code/Feedback/Addon/Controller/Index/Save/Interceptor.php:11 Stack trace: #0 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php(111): FeedbackAddonControllerIndexSaveInterceptor->__construct(Object(MagentoFrameworkAppActionContext), Object(MagentoStoreModelStoreManager), NULL, Object(FeedbackAddonModelInsertFactory)) #1 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/Compiled.php(108): MagentoFrameworkObjectManagerFactoryAbstractFactory->createObject('Feedback\Addon\...', Array) #2 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/ObjectManager.php(56): MagentoFrameworkObjectManagerFactoryCompiled->create('Feedback\Addon\...', in /var/www/html/nuluv/generated/code/Feedback/Addon/Controller/Index/Save/Interceptor.php on line 11








share














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=array(
'first_name'=> $post['first_name'],
'last_name'=> $post['last_name'],
'email' => $post['email'],
'mobile_no' => $post['mobile_no'],
'feedback_content' => $post['feedback_content']
);

$test->setData($data);

if($test->save())
{
$this->messageManager->addSuccessMessage(__('You saved the data.'));
$templateOptions = array('area' => MagentoFrameworkAppArea::AREA_FRONTEND, 'store' => $this->storeManager->getStore()->getId());
$templateVars = array(
'store' => $this->storeManager->getStore(),
'customer_name' => 'John Doe',
'message' => 'Hello!!.'
);
$from = array('email' => "test@example.com", 'name' => 'Name of Sender');
$this->inlineTranslation->suspend();
$to = array('abc@example.com');

$storeScope = MagentoStoreModelScopeInterface::SCOPE_STORE;
$templateId = $this->scopeConfig->getValue ( 'feedback/custom/email_template', MagentoStoreModelScopeInterface::SCOPE_STORE, $storeId );

$transport = $this->_transportBuilder->setTemplateIdentifier($templateId, $storeScope)->setTemplateOptions($templateOptions)
->setTemplateVars($templateVars)
->setFrom($from)
->addTo($to)
->getTransport();
$transport->sendMessage();
$this->messageManager->addSuccess(__('Mail Sent Successfully'));
$this->inlineTranslation->resume();

}
else
{
$this->messageManager->addErrorMessage(__('Data was not saved.'));
}
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath('*/*/');
return $resultRedirect;
}
}


I am trying to sending mail to the user after saving data but this is generated this error



Fatal error: Uncaught TypeError: Argument 3 passed to FeedbackAddonControllerIndexSaveInterceptor::__construct() must be of the type array, null given, called in /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 111 and defined in /var/www/html/nuluv/generated/code/Feedback/Addon/Controller/Index/Save/Interceptor.php:11 Stack trace: #0 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php(111): FeedbackAddonControllerIndexSaveInterceptor->__construct(Object(MagentoFrameworkAppActionContext), Object(MagentoStoreModelStoreManager), NULL, Object(FeedbackAddonModelInsertFactory)) #1 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/Factory/Compiled.php(108): MagentoFrameworkObjectManagerFactoryAbstractFactory->createObject('Feedback\Addon\...', Array) #2 /var/www/html/nuluv/vendor/magento/framework/ObjectManager/ObjectManager.php(56): MagentoFrameworkObjectManagerFactoryCompiled->create('Feedback\Addon\...', in /var/www/html/nuluv/generated/code/Feedback/Addon/Controller/Index/Save/Interceptor.php on line 11






magento2 controllers magento2.2.6





share












share










share



share










asked 7 mins ago









Akash AgrawalAkash Agrawal

254




254













  • Try to run following command & then check : php bin/magento s:up && php bin/magento s:di:c

    – Nauman m. Mansuri
    4 mins ago



















  • Try to run following command & then check : php bin/magento s:up && php bin/magento s:di:c

    – Nauman m. Mansuri
    4 mins ago

















Try to run following command & then check : php bin/magento s:up && php bin/magento s:di:c

– Nauman m. Mansuri
4 mins ago





Try to run following command & then check : php bin/magento s:up && php bin/magento s:di:c

– Nauman m. Mansuri
4 mins ago










0






active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f257974%2fmagento-2-error%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f257974%2fmagento-2-error%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Polycentropodidae

Magento 2 Error message: Invalid state change requested

Paulmy