magento 2 Incompatible argument type: Required type: MagentoFrameworkRegistryMagento2 - Custom Controller throws errorMagento 2 “Recoverable Error: Argument 2 passed” when trying to define model in constructorI created a custom module ,but getting error, not able to figure out what the error is about. How to get out of this error?getting error in while running Cutom admin controller URL in magento 2Model Override issue in magento 2How to use Context object to get config valuesI have created an extension to show Customer Company Name in Order grid. But when creating new order, order is not showing in order gridMagento 2 Create dynamic array From different Model Collection to use in multi select in gridMagento 2.2.5: Overriding Admin Controller sales/orderMagento 2.3 Can't view module's front end page output?

How could sorcerers who are able to produce/manipulate almost all forms of energy communicate over large distances?

Is it "common practice in Fourier transform spectroscopy to multiply the measured interferogram by an apodizing function"? If so, why?

My singleton can be called multiple times

Is this draw by repetition?

What is the fastest integer factorization to break RSA?

Notepad++ delete until colon for every line with replace all

How can I prove that a state of equilibrium is unstable?

How does allowing Sneak Attack with improvised weapons imbalance gameplay at the table?

Why was the shrink form 8" made only to 5.25" and not smaller (4" or less)

Create test of text direction (luatex)

Why can't we say "I have been having a dog"?

Are British MPs missing the point, with these 'Indicative Votes'?

Do creatures with a speed 0ft., fly 30ft. (hover) ever touch the ground?

What is required to make GPS signals available indoors?

Is a distribution that is normal, but highly skewed, considered Gaussian?

How to delete logs automatically after a certain time and restart the process that fills up the log file?

Should I tell management that I intend to leave due to bad software development practices?

Why is the sentence "Das ist eine Nase" correct?

How to install cross-compiler on Ubuntu 18.04?

Salesman text me from his personal phone

Can someone clarify Hamming's notion of important problems in relation to modern academia?

Is it possible to create a QR code using text?

Concerning the definitions of the enthalpy, the Helmholtz free energy and the Gibbs free energy of a system

Can compressed videos be decoded back to their uncompresed original format?



magento 2 Incompatible argument type: Required type: MagentoFrameworkRegistry


Magento2 - Custom Controller throws errorMagento 2 “Recoverable Error: Argument 2 passed” when trying to define model in constructorI created a custom module ,but getting error, not able to figure out what the error is about. How to get out of this error?getting error in while running Cutom admin controller URL in magento 2Model Override issue in magento 2How to use Context object to get config valuesI have created an extension to show Customer Company Name in Order grid. But when creating new order, order is not showing in order gridMagento 2 Create dynamic array From different Model Collection to use in multi select in gridMagento 2.2.5: Overriding Admin Controller sales/orderMagento 2.3 Can't view module's front end page output?













1















i am getting this error while compiling,when i add dependency injection then getting other error like,filefactory if this solved then getting customerfactory.
Actually i want to do custom code in my controller when user click -
enter image description here



 <?php
namespace VendorModuleControllerAdminhtmlSendcredentials;
use MagentoBackendAppActionContext;

class Index extends MagentoCustomerControllerAdminhtmlIndex

/**
* Customer compare grid
*
* @return MagentoFrameworkViewResultLayout
*/
public function __construct(
Context $context,
array $data = []
)
parent::__construct($context, $data);



public function execute()

$resultLayout = $this->_resultLayoutFactory->create();
$getBlock = $resultLayout->getLayout()->createBlock("VendorModuleBlockAdminhtmlSendcredentials");
echo $getBlock->getCustomCustomerId();

die;





Actually i need customer id in my custom controller.










share|improve this question
























  • What you want to achieve actually @sumeetbajaj

    – Prathap Gunasekaran
    4 hours ago











  • i edit question please check

    – sumeet bajaj
    4 hours ago











  • customer is already created,i just need to write my code in my controller file,when click on "send credentials" please refer image above

    – sumeet bajaj
    4 hours ago















1















i am getting this error while compiling,when i add dependency injection then getting other error like,filefactory if this solved then getting customerfactory.
Actually i want to do custom code in my controller when user click -
enter image description here



 <?php
namespace VendorModuleControllerAdminhtmlSendcredentials;
use MagentoBackendAppActionContext;

class Index extends MagentoCustomerControllerAdminhtmlIndex

/**
* Customer compare grid
*
* @return MagentoFrameworkViewResultLayout
*/
public function __construct(
Context $context,
array $data = []
)
parent::__construct($context, $data);



public function execute()

$resultLayout = $this->_resultLayoutFactory->create();
$getBlock = $resultLayout->getLayout()->createBlock("VendorModuleBlockAdminhtmlSendcredentials");
echo $getBlock->getCustomCustomerId();

die;





Actually i need customer id in my custom controller.










share|improve this question
























  • What you want to achieve actually @sumeetbajaj

    – Prathap Gunasekaran
    4 hours ago











  • i edit question please check

    – sumeet bajaj
    4 hours ago











  • customer is already created,i just need to write my code in my controller file,when click on "send credentials" please refer image above

    – sumeet bajaj
    4 hours ago













1












1








1








i am getting this error while compiling,when i add dependency injection then getting other error like,filefactory if this solved then getting customerfactory.
Actually i want to do custom code in my controller when user click -
enter image description here



 <?php
namespace VendorModuleControllerAdminhtmlSendcredentials;
use MagentoBackendAppActionContext;

class Index extends MagentoCustomerControllerAdminhtmlIndex

/**
* Customer compare grid
*
* @return MagentoFrameworkViewResultLayout
*/
public function __construct(
Context $context,
array $data = []
)
parent::__construct($context, $data);



public function execute()

$resultLayout = $this->_resultLayoutFactory->create();
$getBlock = $resultLayout->getLayout()->createBlock("VendorModuleBlockAdminhtmlSendcredentials");
echo $getBlock->getCustomCustomerId();

die;





Actually i need customer id in my custom controller.










share|improve this question
















i am getting this error while compiling,when i add dependency injection then getting other error like,filefactory if this solved then getting customerfactory.
Actually i want to do custom code in my controller when user click -
enter image description here



 <?php
namespace VendorModuleControllerAdminhtmlSendcredentials;
use MagentoBackendAppActionContext;

class Index extends MagentoCustomerControllerAdminhtmlIndex

/**
* Customer compare grid
*
* @return MagentoFrameworkViewResultLayout
*/
public function __construct(
Context $context,
array $data = []
)
parent::__construct($context, $data);



public function execute()

$resultLayout = $this->_resultLayoutFactory->create();
$getBlock = $resultLayout->getLayout()->createBlock("VendorModuleBlockAdminhtmlSendcredentials");
echo $getBlock->getCustomCustomerId();

die;





Actually i need customer id in my custom controller.







magento2 admin customer-account






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 4 hours ago







sumeet bajaj

















asked 4 hours ago









sumeet bajajsumeet bajaj

929




929












  • What you want to achieve actually @sumeetbajaj

    – Prathap Gunasekaran
    4 hours ago











  • i edit question please check

    – sumeet bajaj
    4 hours ago











  • customer is already created,i just need to write my code in my controller file,when click on "send credentials" please refer image above

    – sumeet bajaj
    4 hours ago

















  • What you want to achieve actually @sumeetbajaj

    – Prathap Gunasekaran
    4 hours ago











  • i edit question please check

    – sumeet bajaj
    4 hours ago











  • customer is already created,i just need to write my code in my controller file,when click on "send credentials" please refer image above

    – sumeet bajaj
    4 hours ago
















What you want to achieve actually @sumeetbajaj

– Prathap Gunasekaran
4 hours ago





What you want to achieve actually @sumeetbajaj

– Prathap Gunasekaran
4 hours ago













i edit question please check

– sumeet bajaj
4 hours ago





i edit question please check

– sumeet bajaj
4 hours ago













customer is already created,i just need to write my code in my controller file,when click on "send credentials" please refer image above

– sumeet bajaj
4 hours ago





customer is already created,i just need to write my code in my controller file,when click on "send credentials" please refer image above

– sumeet bajaj
4 hours ago










2 Answers
2






active

oldest

votes


















1














You don't extend properly MagentoCustomerControllerAdminhtmlIndex to your class when try to call __construct . If you check the code of then you find a lot of parameters need __construct:MagentoCustomerControllerAdminhtmlIndex.



<?php


namespace VendorModuleControllerAdminhtmlSendcredentials;

class Index extends MagentoCustomerControllerAdminhtmlIndex


public function __construct(
MagentoBackendAppActionContext $context,
MagentoFrameworkRegistry $coreRegistry,
MagentoFrameworkAppResponseHttpFileFactory $fileFactory,
MagentoCustomerModelCustomerFactory $customerFactory,
MagentoCustomerModelAddressFactory $addressFactory,
MagentoCustomerModelMetadataFormFactory $formFactory,
MagentoNewsletterModelSubscriberFactory $subscriberFactory,
MagentoCustomerHelperView $viewHelper,
MagentoFrameworkMathRandom $random,
MagentoCustomerApiCustomerRepositoryInterface $customerRepository,
MagentoFrameworkApiExtensibleDataObjectConverter $extensibleDataObjectConverter,
MagentoCustomerModelAddressMapper $addressMapper,
MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
MagentoCustomerApiAddressRepositoryInterface $addressRepository,
MagentoCustomerApiDataCustomerInterfaceFactory $customerDataFactory,
MagentoCustomerApiDataAddressInterfaceFactory $addressDataFactory,
MagentoCustomerModelCustomerMapper $customerMapper,
MagentoFrameworkReflectionDataObjectProcessor $dataObjectProcessor,
MagentoFrameworkApiDataObjectHelper $dataObjectHelper,
MagentoFrameworkDataObjectFactory $objectFactory,
MagentoFrameworkViewLayoutFactory $layoutFactory,
MagentoFrameworkViewResultLayoutFactory $resultLayoutFactory,
MagentoFrameworkViewResultPageFactory $resultPageFactory,
MagentoBackendModelViewResultForwardFactory $resultForwardFactory,
MagentoFrameworkControllerResultJsonFactory $resultJsonFactory)

parent::__construct($context, $coreRegistry, $fileFactory, $customerFactory, $addressFactory, $formFactory, $subscriberFactory, $viewHelper, $random, $customerRepository, $extensibleDataObjectConverter, $addressMapper, $customerAccountManagement, $addressRepository, $customerDataFactory, $addressDataFactory, $customerMapper, $dataObjectProcessor, $dataObjectHelper, $objectFactory, $layoutFactory, $resultLayoutFactory, $resultPageFactory, $resultForwardFactory, $resultJsonFactory);


public function execute()






No of parameters at __construct:MagentoCustomerControllerAdminhtmlIndex is 25 ,https://github.com/magento/magento2/blob/2.3-develop/app/code/Magento/Customer/Controller/Adminhtml/Index.php#L201-L225



but your extends class's has two parameters parent::__construct($context, $data) .So no of parameters should be same for extends __construct and original one.






share|improve this answer

























  • but how to get customer id here ?

    – sumeet bajaj
    4 hours ago











  • $this->initCurrentCustomer(); provide you customer id

    – Amit Bera
    4 hours ago











  • yes i already try this after your code but it show 0

    – sumeet bajaj
    4 hours ago











  • What is the URL of button sendCrendtial?

    – Amit Bera
    4 hours ago











  • localhost/projectname/admin/xxx/sendcredentials/index/customer_id/1/

    – sumeet bajaj
    4 hours ago



















2














Remove the constructor method from your class.

the original class MagentoCustomerControllerAdminhtmlIndex has a constructor with way more parameters than you provided in your code.






share|improve this answer























  • ok i will remove constructor class. but how may i get customer id here ?

    – sumeet bajaj
    4 hours ago











  • I am not able to get customer id

    – sumeet bajaj
    3 hours ago











  • you can send the id via GET from the button. How did you add the button in the page?

    – Marius
    3 hours ago











  • thank you so much for your reply Upvote

    – sumeet bajaj
    2 hours ago











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%2f268347%2fmagento-2-incompatible-argument-type-required-type-magento-framework-registry%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You don't extend properly MagentoCustomerControllerAdminhtmlIndex to your class when try to call __construct . If you check the code of then you find a lot of parameters need __construct:MagentoCustomerControllerAdminhtmlIndex.



<?php


namespace VendorModuleControllerAdminhtmlSendcredentials;

class Index extends MagentoCustomerControllerAdminhtmlIndex


public function __construct(
MagentoBackendAppActionContext $context,
MagentoFrameworkRegistry $coreRegistry,
MagentoFrameworkAppResponseHttpFileFactory $fileFactory,
MagentoCustomerModelCustomerFactory $customerFactory,
MagentoCustomerModelAddressFactory $addressFactory,
MagentoCustomerModelMetadataFormFactory $formFactory,
MagentoNewsletterModelSubscriberFactory $subscriberFactory,
MagentoCustomerHelperView $viewHelper,
MagentoFrameworkMathRandom $random,
MagentoCustomerApiCustomerRepositoryInterface $customerRepository,
MagentoFrameworkApiExtensibleDataObjectConverter $extensibleDataObjectConverter,
MagentoCustomerModelAddressMapper $addressMapper,
MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
MagentoCustomerApiAddressRepositoryInterface $addressRepository,
MagentoCustomerApiDataCustomerInterfaceFactory $customerDataFactory,
MagentoCustomerApiDataAddressInterfaceFactory $addressDataFactory,
MagentoCustomerModelCustomerMapper $customerMapper,
MagentoFrameworkReflectionDataObjectProcessor $dataObjectProcessor,
MagentoFrameworkApiDataObjectHelper $dataObjectHelper,
MagentoFrameworkDataObjectFactory $objectFactory,
MagentoFrameworkViewLayoutFactory $layoutFactory,
MagentoFrameworkViewResultLayoutFactory $resultLayoutFactory,
MagentoFrameworkViewResultPageFactory $resultPageFactory,
MagentoBackendModelViewResultForwardFactory $resultForwardFactory,
MagentoFrameworkControllerResultJsonFactory $resultJsonFactory)

parent::__construct($context, $coreRegistry, $fileFactory, $customerFactory, $addressFactory, $formFactory, $subscriberFactory, $viewHelper, $random, $customerRepository, $extensibleDataObjectConverter, $addressMapper, $customerAccountManagement, $addressRepository, $customerDataFactory, $addressDataFactory, $customerMapper, $dataObjectProcessor, $dataObjectHelper, $objectFactory, $layoutFactory, $resultLayoutFactory, $resultPageFactory, $resultForwardFactory, $resultJsonFactory);


public function execute()






No of parameters at __construct:MagentoCustomerControllerAdminhtmlIndex is 25 ,https://github.com/magento/magento2/blob/2.3-develop/app/code/Magento/Customer/Controller/Adminhtml/Index.php#L201-L225



but your extends class's has two parameters parent::__construct($context, $data) .So no of parameters should be same for extends __construct and original one.






share|improve this answer

























  • but how to get customer id here ?

    – sumeet bajaj
    4 hours ago











  • $this->initCurrentCustomer(); provide you customer id

    – Amit Bera
    4 hours ago











  • yes i already try this after your code but it show 0

    – sumeet bajaj
    4 hours ago











  • What is the URL of button sendCrendtial?

    – Amit Bera
    4 hours ago











  • localhost/projectname/admin/xxx/sendcredentials/index/customer_id/1/

    – sumeet bajaj
    4 hours ago
















1














You don't extend properly MagentoCustomerControllerAdminhtmlIndex to your class when try to call __construct . If you check the code of then you find a lot of parameters need __construct:MagentoCustomerControllerAdminhtmlIndex.



<?php


namespace VendorModuleControllerAdminhtmlSendcredentials;

class Index extends MagentoCustomerControllerAdminhtmlIndex


public function __construct(
MagentoBackendAppActionContext $context,
MagentoFrameworkRegistry $coreRegistry,
MagentoFrameworkAppResponseHttpFileFactory $fileFactory,
MagentoCustomerModelCustomerFactory $customerFactory,
MagentoCustomerModelAddressFactory $addressFactory,
MagentoCustomerModelMetadataFormFactory $formFactory,
MagentoNewsletterModelSubscriberFactory $subscriberFactory,
MagentoCustomerHelperView $viewHelper,
MagentoFrameworkMathRandom $random,
MagentoCustomerApiCustomerRepositoryInterface $customerRepository,
MagentoFrameworkApiExtensibleDataObjectConverter $extensibleDataObjectConverter,
MagentoCustomerModelAddressMapper $addressMapper,
MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
MagentoCustomerApiAddressRepositoryInterface $addressRepository,
MagentoCustomerApiDataCustomerInterfaceFactory $customerDataFactory,
MagentoCustomerApiDataAddressInterfaceFactory $addressDataFactory,
MagentoCustomerModelCustomerMapper $customerMapper,
MagentoFrameworkReflectionDataObjectProcessor $dataObjectProcessor,
MagentoFrameworkApiDataObjectHelper $dataObjectHelper,
MagentoFrameworkDataObjectFactory $objectFactory,
MagentoFrameworkViewLayoutFactory $layoutFactory,
MagentoFrameworkViewResultLayoutFactory $resultLayoutFactory,
MagentoFrameworkViewResultPageFactory $resultPageFactory,
MagentoBackendModelViewResultForwardFactory $resultForwardFactory,
MagentoFrameworkControllerResultJsonFactory $resultJsonFactory)

parent::__construct($context, $coreRegistry, $fileFactory, $customerFactory, $addressFactory, $formFactory, $subscriberFactory, $viewHelper, $random, $customerRepository, $extensibleDataObjectConverter, $addressMapper, $customerAccountManagement, $addressRepository, $customerDataFactory, $addressDataFactory, $customerMapper, $dataObjectProcessor, $dataObjectHelper, $objectFactory, $layoutFactory, $resultLayoutFactory, $resultPageFactory, $resultForwardFactory, $resultJsonFactory);


public function execute()






No of parameters at __construct:MagentoCustomerControllerAdminhtmlIndex is 25 ,https://github.com/magento/magento2/blob/2.3-develop/app/code/Magento/Customer/Controller/Adminhtml/Index.php#L201-L225



but your extends class's has two parameters parent::__construct($context, $data) .So no of parameters should be same for extends __construct and original one.






share|improve this answer

























  • but how to get customer id here ?

    – sumeet bajaj
    4 hours ago











  • $this->initCurrentCustomer(); provide you customer id

    – Amit Bera
    4 hours ago











  • yes i already try this after your code but it show 0

    – sumeet bajaj
    4 hours ago











  • What is the URL of button sendCrendtial?

    – Amit Bera
    4 hours ago











  • localhost/projectname/admin/xxx/sendcredentials/index/customer_id/1/

    – sumeet bajaj
    4 hours ago














1












1








1







You don't extend properly MagentoCustomerControllerAdminhtmlIndex to your class when try to call __construct . If you check the code of then you find a lot of parameters need __construct:MagentoCustomerControllerAdminhtmlIndex.



<?php


namespace VendorModuleControllerAdminhtmlSendcredentials;

class Index extends MagentoCustomerControllerAdminhtmlIndex


public function __construct(
MagentoBackendAppActionContext $context,
MagentoFrameworkRegistry $coreRegistry,
MagentoFrameworkAppResponseHttpFileFactory $fileFactory,
MagentoCustomerModelCustomerFactory $customerFactory,
MagentoCustomerModelAddressFactory $addressFactory,
MagentoCustomerModelMetadataFormFactory $formFactory,
MagentoNewsletterModelSubscriberFactory $subscriberFactory,
MagentoCustomerHelperView $viewHelper,
MagentoFrameworkMathRandom $random,
MagentoCustomerApiCustomerRepositoryInterface $customerRepository,
MagentoFrameworkApiExtensibleDataObjectConverter $extensibleDataObjectConverter,
MagentoCustomerModelAddressMapper $addressMapper,
MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
MagentoCustomerApiAddressRepositoryInterface $addressRepository,
MagentoCustomerApiDataCustomerInterfaceFactory $customerDataFactory,
MagentoCustomerApiDataAddressInterfaceFactory $addressDataFactory,
MagentoCustomerModelCustomerMapper $customerMapper,
MagentoFrameworkReflectionDataObjectProcessor $dataObjectProcessor,
MagentoFrameworkApiDataObjectHelper $dataObjectHelper,
MagentoFrameworkDataObjectFactory $objectFactory,
MagentoFrameworkViewLayoutFactory $layoutFactory,
MagentoFrameworkViewResultLayoutFactory $resultLayoutFactory,
MagentoFrameworkViewResultPageFactory $resultPageFactory,
MagentoBackendModelViewResultForwardFactory $resultForwardFactory,
MagentoFrameworkControllerResultJsonFactory $resultJsonFactory)

parent::__construct($context, $coreRegistry, $fileFactory, $customerFactory, $addressFactory, $formFactory, $subscriberFactory, $viewHelper, $random, $customerRepository, $extensibleDataObjectConverter, $addressMapper, $customerAccountManagement, $addressRepository, $customerDataFactory, $addressDataFactory, $customerMapper, $dataObjectProcessor, $dataObjectHelper, $objectFactory, $layoutFactory, $resultLayoutFactory, $resultPageFactory, $resultForwardFactory, $resultJsonFactory);


public function execute()






No of parameters at __construct:MagentoCustomerControllerAdminhtmlIndex is 25 ,https://github.com/magento/magento2/blob/2.3-develop/app/code/Magento/Customer/Controller/Adminhtml/Index.php#L201-L225



but your extends class's has two parameters parent::__construct($context, $data) .So no of parameters should be same for extends __construct and original one.






share|improve this answer















You don't extend properly MagentoCustomerControllerAdminhtmlIndex to your class when try to call __construct . If you check the code of then you find a lot of parameters need __construct:MagentoCustomerControllerAdminhtmlIndex.



<?php


namespace VendorModuleControllerAdminhtmlSendcredentials;

class Index extends MagentoCustomerControllerAdminhtmlIndex


public function __construct(
MagentoBackendAppActionContext $context,
MagentoFrameworkRegistry $coreRegistry,
MagentoFrameworkAppResponseHttpFileFactory $fileFactory,
MagentoCustomerModelCustomerFactory $customerFactory,
MagentoCustomerModelAddressFactory $addressFactory,
MagentoCustomerModelMetadataFormFactory $formFactory,
MagentoNewsletterModelSubscriberFactory $subscriberFactory,
MagentoCustomerHelperView $viewHelper,
MagentoFrameworkMathRandom $random,
MagentoCustomerApiCustomerRepositoryInterface $customerRepository,
MagentoFrameworkApiExtensibleDataObjectConverter $extensibleDataObjectConverter,
MagentoCustomerModelAddressMapper $addressMapper,
MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
MagentoCustomerApiAddressRepositoryInterface $addressRepository,
MagentoCustomerApiDataCustomerInterfaceFactory $customerDataFactory,
MagentoCustomerApiDataAddressInterfaceFactory $addressDataFactory,
MagentoCustomerModelCustomerMapper $customerMapper,
MagentoFrameworkReflectionDataObjectProcessor $dataObjectProcessor,
MagentoFrameworkApiDataObjectHelper $dataObjectHelper,
MagentoFrameworkDataObjectFactory $objectFactory,
MagentoFrameworkViewLayoutFactory $layoutFactory,
MagentoFrameworkViewResultLayoutFactory $resultLayoutFactory,
MagentoFrameworkViewResultPageFactory $resultPageFactory,
MagentoBackendModelViewResultForwardFactory $resultForwardFactory,
MagentoFrameworkControllerResultJsonFactory $resultJsonFactory)

parent::__construct($context, $coreRegistry, $fileFactory, $customerFactory, $addressFactory, $formFactory, $subscriberFactory, $viewHelper, $random, $customerRepository, $extensibleDataObjectConverter, $addressMapper, $customerAccountManagement, $addressRepository, $customerDataFactory, $addressDataFactory, $customerMapper, $dataObjectProcessor, $dataObjectHelper, $objectFactory, $layoutFactory, $resultLayoutFactory, $resultPageFactory, $resultForwardFactory, $resultJsonFactory);


public function execute()






No of parameters at __construct:MagentoCustomerControllerAdminhtmlIndex is 25 ,https://github.com/magento/magento2/blob/2.3-develop/app/code/Magento/Customer/Controller/Adminhtml/Index.php#L201-L225



but your extends class's has two parameters parent::__construct($context, $data) .So no of parameters should be same for extends __construct and original one.







share|improve this answer














share|improve this answer



share|improve this answer








edited 4 hours ago

























answered 4 hours ago









Amit BeraAmit Bera

59.6k1676177




59.6k1676177












  • but how to get customer id here ?

    – sumeet bajaj
    4 hours ago











  • $this->initCurrentCustomer(); provide you customer id

    – Amit Bera
    4 hours ago











  • yes i already try this after your code but it show 0

    – sumeet bajaj
    4 hours ago











  • What is the URL of button sendCrendtial?

    – Amit Bera
    4 hours ago











  • localhost/projectname/admin/xxx/sendcredentials/index/customer_id/1/

    – sumeet bajaj
    4 hours ago


















  • but how to get customer id here ?

    – sumeet bajaj
    4 hours ago











  • $this->initCurrentCustomer(); provide you customer id

    – Amit Bera
    4 hours ago











  • yes i already try this after your code but it show 0

    – sumeet bajaj
    4 hours ago











  • What is the URL of button sendCrendtial?

    – Amit Bera
    4 hours ago











  • localhost/projectname/admin/xxx/sendcredentials/index/customer_id/1/

    – sumeet bajaj
    4 hours ago

















but how to get customer id here ?

– sumeet bajaj
4 hours ago





but how to get customer id here ?

– sumeet bajaj
4 hours ago













$this->initCurrentCustomer(); provide you customer id

– Amit Bera
4 hours ago





$this->initCurrentCustomer(); provide you customer id

– Amit Bera
4 hours ago













yes i already try this after your code but it show 0

– sumeet bajaj
4 hours ago





yes i already try this after your code but it show 0

– sumeet bajaj
4 hours ago













What is the URL of button sendCrendtial?

– Amit Bera
4 hours ago





What is the URL of button sendCrendtial?

– Amit Bera
4 hours ago













localhost/projectname/admin/xxx/sendcredentials/index/customer_id/1/

– sumeet bajaj
4 hours ago






localhost/projectname/admin/xxx/sendcredentials/index/customer_id/1/

– sumeet bajaj
4 hours ago














2














Remove the constructor method from your class.

the original class MagentoCustomerControllerAdminhtmlIndex has a constructor with way more parameters than you provided in your code.






share|improve this answer























  • ok i will remove constructor class. but how may i get customer id here ?

    – sumeet bajaj
    4 hours ago











  • I am not able to get customer id

    – sumeet bajaj
    3 hours ago











  • you can send the id via GET from the button. How did you add the button in the page?

    – Marius
    3 hours ago











  • thank you so much for your reply Upvote

    – sumeet bajaj
    2 hours ago















2














Remove the constructor method from your class.

the original class MagentoCustomerControllerAdminhtmlIndex has a constructor with way more parameters than you provided in your code.






share|improve this answer























  • ok i will remove constructor class. but how may i get customer id here ?

    – sumeet bajaj
    4 hours ago











  • I am not able to get customer id

    – sumeet bajaj
    3 hours ago











  • you can send the id via GET from the button. How did you add the button in the page?

    – Marius
    3 hours ago











  • thank you so much for your reply Upvote

    – sumeet bajaj
    2 hours ago













2












2








2







Remove the constructor method from your class.

the original class MagentoCustomerControllerAdminhtmlIndex has a constructor with way more parameters than you provided in your code.






share|improve this answer













Remove the constructor method from your class.

the original class MagentoCustomerControllerAdminhtmlIndex has a constructor with way more parameters than you provided in your code.







share|improve this answer












share|improve this answer



share|improve this answer










answered 4 hours ago









MariusMarius

167k28320686




167k28320686












  • ok i will remove constructor class. but how may i get customer id here ?

    – sumeet bajaj
    4 hours ago











  • I am not able to get customer id

    – sumeet bajaj
    3 hours ago











  • you can send the id via GET from the button. How did you add the button in the page?

    – Marius
    3 hours ago











  • thank you so much for your reply Upvote

    – sumeet bajaj
    2 hours ago

















  • ok i will remove constructor class. but how may i get customer id here ?

    – sumeet bajaj
    4 hours ago











  • I am not able to get customer id

    – sumeet bajaj
    3 hours ago











  • you can send the id via GET from the button. How did you add the button in the page?

    – Marius
    3 hours ago











  • thank you so much for your reply Upvote

    – sumeet bajaj
    2 hours ago
















ok i will remove constructor class. but how may i get customer id here ?

– sumeet bajaj
4 hours ago





ok i will remove constructor class. but how may i get customer id here ?

– sumeet bajaj
4 hours ago













I am not able to get customer id

– sumeet bajaj
3 hours ago





I am not able to get customer id

– sumeet bajaj
3 hours ago













you can send the id via GET from the button. How did you add the button in the page?

– Marius
3 hours ago





you can send the id via GET from the button. How did you add the button in the page?

– Marius
3 hours ago













thank you so much for your reply Upvote

– sumeet bajaj
2 hours ago





thank you so much for your reply Upvote

– sumeet bajaj
2 hours ago

















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%2f268347%2fmagento-2-incompatible-argument-type-required-type-magento-framework-registry%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

Благоевград Съдържание География | История | Население | Политика | Икономика и инфрастуктура | Здравеопазване | Образование и наука | Култура и забавления | Забележителности | Личности | Литература | Външни препратки | Бележки | Навигация42°01′18.99″ с. ш. 23°05′51″ и. д. / 42.021944° с. ш. 23.0975° и. д.*БлагоевградразширитередактиранеОфициален уебсайт на община БлагоевградНовинарски портал на Благоевград – blagoevgrad.euСайтове за БлагоевградНационален статистически институтdariknews.bgГригоровичъ, Викторъ. „Очеркъ путешествія по Европейской Турціи“. Москва, 1877.Стрезов, Георги. Два санджака от Източна Македония. Периодично списание на Българското книжовно дружество в Средец, кн. XXXVII и XXXVIII, 1891, стр. 18 – 19.Македония. Етнография и статистикаГаджанов, Димитър Г. Мюсюлманското население в Новоосвободените земи, в: Научна експедиция в Македония и Поморавието 1916, Военноиздателски комплекс „Св. Георги Победоносец“, Университетско издателство „Св. Климент Охридски“, София, 1993, стр. 244.паметник на незнайния четник&cd=18&hl=en&ct=clnk&client=firefox-a „История на днешен Благоевград“, взето от www.museumblg.com на 16 март 2010 г.„Справка за населението на град Благоевград, община Благоевград, област Благоевград, НСИ“„The population of all towns and villages in Blagoevgrad Province with 50 inhabitants or more according to census results and latest official estimates“„Ethnic composition, all places: 2011 census“История на Неврокопска епархия.Национален статистически институтМюсюлманско изповедание. Главно мюфтийствоНационален публичен регистър на храмовете в БългарияМюсюлманско изповедание. Главно мюфтийствоwww.dnes.bg Джамията в Благоевград не била паленаwww.sesc-bg.orgСписък на побратимени градовеТехническо побратимяванеГУМ грейва в цветовете на нощен Лас Вегас под името „Largo“, „МОЛ Благоевград“..., в. „Струма“grabo.bgwww.cinemaxbg.comррр4238731-067cad53a-0546-417b-a3d3-51e49b1d2232147736077147736077

What is the best defense strategy for Survival in Grand Theft Auto Online?What is JP used for in Grand Theft Auto Online?How do I setup a Crew HQ in Grand Theft Auto Online?How does stealth work in Grand Theft Auto Online?Is it possible to own more than 10 cars in Grand Theft Auto online?Where to find truck/trailers in Grand Theft Auto OnlineWhat are some of the best missions to do on Grand Theft Auto 5 onlineFastest Car in Grand Theft Auto V PCHow to setup a Crew vs Crew online session in Grand Theft Auto Online?Grand theft auto 5 crossplayingRestart Grand Theft Auto V Online?

How does Billy Russo acquire his 'Jigsaw' mask? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why does Bane wear the mask?Why does Kylo Ren wear a mask?Why did Captain America remove his mask while fighting Batroc the Leaper?How did the OA acquire her wisdom?Is Billy Breckenridge gay?How does Adrian Toomes hide his earnings from the IRS?What is the state of affairs on Nootka Sound by the end of season 1?How did Tia Dalma acquire Captain Barbossa's body?How is one “Deemed Worthy”, to acquire the Greatsword “Dawn”?How did Karen acquire the handgun?