Magento 2 error on an overriden constructorHow to override core helper in magento 2?I created a custom module ,but getting error, not able to figure out what the error is about. How to get out of this error?Magento 2 Custom New Block without moduleMagento 2 get availabe stock of productMagento 2 Create dynamic array From different Model Collection to use in multi select in gridsearch not working - Fatal error - magento 2PHP fatal error: Uncaught TypeError: Argument 2 passed to MagentoCatalogPluginBlockTopmenuMagento 2.3 Can't view module's front end page output?I am getting this error when I installed algolia search moduleMsrpPriceCalculator Exception
Were any toxic metals used in the International Space Station?
APFS - how do I enable transparent compression
Were any of the books mentioned in this scene from the movie Hackers real?
labelled end points on logic diagram
Why did Varys remove his rings?
UUID type for NEWID()
What is the effect of the Feeblemind spell on Ability Score Improvements?
Why commonly or frequently used fonts sizes are even numbers like 10px, 12px, 16px, 24px, or 32px?
What do you call the hair or body hair you trim off your body?
Why is Drogon so much better in battle than Rhaegal and Viserion?
Should I communicate in my applications that I'm unemployed out of choice rather than because nobody will have me?
c++ conditional uni-directional iterator
I recently started my machine learning PhD and I have absolutely no idea what I'm doing
Do people who work at research institutes consider themselves "academics"?
To whom did Varys write those letters in Game of Thrones S8E5?
Capital gains on stocks sold to take initial investment off the table
Network latencies between opposite ends of the Earth
How could it be that 80% of townspeople were farmers during the Edo period in Japan?
Using chord iii in a chord progression (major key)
Developers demotivated due to working on same project for more than 2 years
What is the status of the Lannisters after Season 8 Episode 5, "The Bells"?
Does this "yield your space to an ally" rule my 3.5 group uses appear anywhere in the official rules?
How to check if comma list is empty?
Is there any good reason to write "it is easy to see"?
Magento 2 error on an overriden constructor
How to override core helper in magento 2?I created a custom module ,but getting error, not able to figure out what the error is about. How to get out of this error?Magento 2 Custom New Block without moduleMagento 2 get availabe stock of productMagento 2 Create dynamic array From different Model Collection to use in multi select in gridsearch not working - Fatal error - magento 2PHP fatal error: Uncaught TypeError: Argument 2 passed to MagentoCatalogPluginBlockTopmenuMagento 2.3 Can't view module's front end page output?I am getting this error when I installed algolia search moduleMsrpPriceCalculator Exception
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have 2 custom modules installed, when opening a front end of a module1, i get error related to module2, this is the error
Argument 4 passed to VendorNameModule2BlockMagentoFrameworkPricingRender::__construct() must be of the type array, null given, called in /var/www/html/magento2.3.1/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 117 [] []
In front end i got this error
Missing required argument $data of VendorNameModule2BlockMagentoFrameworkPricingRender.
As you see the module2 overrides MagentoFrameworkPricingRender.php class
On VendorName/Module2/Block/Magento/Framework/Pricing/Render.php
namespace VendorNameModule2BlockMagentoFrameworkPricing;
use MagentoFrameworkPricingAmountAmountInterface;
use MagentoFrameworkPricingPricePriceInterface;
use MagentoFrameworkPricingSaleableInterface;
use MagentoFrameworkPricingRenderLayout;
use MagentoFrameworkViewElementTemplate;
use VendorNameModule2HelperData;
/**
* Class Render
* @package VendorNameModule2BlockMagentoFrameworkPricing
*/
class Render extends MagentoFrameworkPricingRender
* @var VendorNameModule2HelperData
*/
private $dataHelper;
/**
* Render constructor.
* @param VendorNameModule2HelperData $dataHelper
* @param TemplateContext $context
* @param Layout $priceLayout
* @param array $data
*/
public function __construct(Data $dataHelper, TemplateContext $context, Layout $priceLayout, array $data)
$this->dataHelper = $dataHelper;
parent::__construct($context, $priceLayout, $data);
I searched for the call to render class on Module 1 i found it here
in venorName1/Module1/Helper/Catalog.php
namespace VendorName1Module1Helper;
use MagentoFrameworkStdlibDateTimeDateTime;
class Catalog extends MagentoFrameworkAppHelperAbstractHelper
private $date;
private $helper;
private $renderer;
private $block;
private $linkFactory;
private $optionBlock;
private $priceFormat;
private $imageHelper;
private $coreRegistry;
private $blockFactory;
private $productLinks;
private $priceCurrency;
private $pricingHelper;
private $objectManager;
private $catalogHelper;
private $storeInterface;
private $productFactory;
private $downloadHelper;
private $configurableBlock;
private $catalogProductHelper;
private $eachProduct = [];
public function __construct(
DateTime $date,
WebkulPosHelperData $helper,
MagentoFrameworkRegistry $coreRegistry,
MagentoCatalogHelperImage $imageHelper,
MagentoCatalogHelperData $catalogHelper,
MagentoFrameworkPricingRender $renderer,
MagentoFrameworkAppHelperContext $context,
MagentoFrameworkViewElementTemplate $block,
MagentoFrameworkFilesystemDirectoryList $dir,
WebkulPosBlockConfigurable $configurableBlock,
MagentoDownloadableHelperFile $downloadHelper,
MagentoFrameworkPricingHelperData $priceFormat,
MagentoCatalogModelProductFactory $productFactory,
MagentoFrameworkPricingHelperData $pricingHelper,
MagentoCatalogHelperProduct $catalogProductHelper,
MagentoDownloadableModelLinkFactory $linkFactory,
MagentoCatalogBlockProductViewOptions $optionBlock,
MagentoFrameworkObjectManagerInterface $objectManager,
MagentoFrameworkViewElementBlockFactory $blockFactory,
MagentoStoreModelStoreManagerInterface $storeInterface,
MagentoDownloadableBlockCatalogProductLinks $productLinks,
MagentoFrameworkPricingPriceCurrencyInterface $priceCurrency
)
$this->date = $date;
$this->helper = $helper;
$this->renderer = $renderer;
$this->block = $block;
$this->_baseDir = $dir->getPath("media");
$this->optionBlock = $optionBlock;
$this->priceFormat = $priceFormat;
$this->blockFactory = $blockFactory;
$this->coreRegistry = $coreRegistry;
$this->imageHelper = $imageHelper;
$this->priceCurrency = $priceCurrency;
$this->pricingHelper = $pricingHelper;
$this->objectManager = $objectManager;
$this->catalogHelper = $catalogHelper;
$this->productLinks = $productLinks;
$this->linkFactory = $linkFactory;
$this->downloadHelper = $downloadHelper;
$this->productFactory = $productFactory;
$this->storeInterface = $storeInterface;
$this->configurableBlock = $configurableBlock;
$this->catalogProductHelper = $catalogProductHelper;
parent::__construct($context);
How can i fix this error or debug it?
magento2 module third-party-module
add a comment |
I have 2 custom modules installed, when opening a front end of a module1, i get error related to module2, this is the error
Argument 4 passed to VendorNameModule2BlockMagentoFrameworkPricingRender::__construct() must be of the type array, null given, called in /var/www/html/magento2.3.1/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 117 [] []
In front end i got this error
Missing required argument $data of VendorNameModule2BlockMagentoFrameworkPricingRender.
As you see the module2 overrides MagentoFrameworkPricingRender.php class
On VendorName/Module2/Block/Magento/Framework/Pricing/Render.php
namespace VendorNameModule2BlockMagentoFrameworkPricing;
use MagentoFrameworkPricingAmountAmountInterface;
use MagentoFrameworkPricingPricePriceInterface;
use MagentoFrameworkPricingSaleableInterface;
use MagentoFrameworkPricingRenderLayout;
use MagentoFrameworkViewElementTemplate;
use VendorNameModule2HelperData;
/**
* Class Render
* @package VendorNameModule2BlockMagentoFrameworkPricing
*/
class Render extends MagentoFrameworkPricingRender
* @var VendorNameModule2HelperData
*/
private $dataHelper;
/**
* Render constructor.
* @param VendorNameModule2HelperData $dataHelper
* @param TemplateContext $context
* @param Layout $priceLayout
* @param array $data
*/
public function __construct(Data $dataHelper, TemplateContext $context, Layout $priceLayout, array $data)
$this->dataHelper = $dataHelper;
parent::__construct($context, $priceLayout, $data);
I searched for the call to render class on Module 1 i found it here
in venorName1/Module1/Helper/Catalog.php
namespace VendorName1Module1Helper;
use MagentoFrameworkStdlibDateTimeDateTime;
class Catalog extends MagentoFrameworkAppHelperAbstractHelper
private $date;
private $helper;
private $renderer;
private $block;
private $linkFactory;
private $optionBlock;
private $priceFormat;
private $imageHelper;
private $coreRegistry;
private $blockFactory;
private $productLinks;
private $priceCurrency;
private $pricingHelper;
private $objectManager;
private $catalogHelper;
private $storeInterface;
private $productFactory;
private $downloadHelper;
private $configurableBlock;
private $catalogProductHelper;
private $eachProduct = [];
public function __construct(
DateTime $date,
WebkulPosHelperData $helper,
MagentoFrameworkRegistry $coreRegistry,
MagentoCatalogHelperImage $imageHelper,
MagentoCatalogHelperData $catalogHelper,
MagentoFrameworkPricingRender $renderer,
MagentoFrameworkAppHelperContext $context,
MagentoFrameworkViewElementTemplate $block,
MagentoFrameworkFilesystemDirectoryList $dir,
WebkulPosBlockConfigurable $configurableBlock,
MagentoDownloadableHelperFile $downloadHelper,
MagentoFrameworkPricingHelperData $priceFormat,
MagentoCatalogModelProductFactory $productFactory,
MagentoFrameworkPricingHelperData $pricingHelper,
MagentoCatalogHelperProduct $catalogProductHelper,
MagentoDownloadableModelLinkFactory $linkFactory,
MagentoCatalogBlockProductViewOptions $optionBlock,
MagentoFrameworkObjectManagerInterface $objectManager,
MagentoFrameworkViewElementBlockFactory $blockFactory,
MagentoStoreModelStoreManagerInterface $storeInterface,
MagentoDownloadableBlockCatalogProductLinks $productLinks,
MagentoFrameworkPricingPriceCurrencyInterface $priceCurrency
)
$this->date = $date;
$this->helper = $helper;
$this->renderer = $renderer;
$this->block = $block;
$this->_baseDir = $dir->getPath("media");
$this->optionBlock = $optionBlock;
$this->priceFormat = $priceFormat;
$this->blockFactory = $blockFactory;
$this->coreRegistry = $coreRegistry;
$this->imageHelper = $imageHelper;
$this->priceCurrency = $priceCurrency;
$this->pricingHelper = $pricingHelper;
$this->objectManager = $objectManager;
$this->catalogHelper = $catalogHelper;
$this->productLinks = $productLinks;
$this->linkFactory = $linkFactory;
$this->downloadHelper = $downloadHelper;
$this->productFactory = $productFactory;
$this->storeInterface = $storeInterface;
$this->configurableBlock = $configurableBlock;
$this->catalogProductHelper = $catalogProductHelper;
parent::__construct($context);
How can i fix this error or debug it?
magento2 module third-party-module
In your module 1, are you trying to call your customer Render class or the default Magento framework one?
– mlunt
May 10 at 15:52
@mlunt it's the Magento Framework MagentoFrameworkPricingRender $renderer, on constructor $this->renderer = $renderer; I tried to call the Module 2 Render class but always same error
– tarek fellah
2 days ago
It may be looking for your new instance from module 1 because of the dependency inheritance. I’d put an echo statement in your module 1 class to confirm.
– mlunt
2 days ago
Put an cho on venorName1/Module1/Helper/Catalog.php or the page front end controller where i have the error?
– tarek fellah
2 days ago
In the module itself
– mlunt
2 days ago
add a comment |
I have 2 custom modules installed, when opening a front end of a module1, i get error related to module2, this is the error
Argument 4 passed to VendorNameModule2BlockMagentoFrameworkPricingRender::__construct() must be of the type array, null given, called in /var/www/html/magento2.3.1/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 117 [] []
In front end i got this error
Missing required argument $data of VendorNameModule2BlockMagentoFrameworkPricingRender.
As you see the module2 overrides MagentoFrameworkPricingRender.php class
On VendorName/Module2/Block/Magento/Framework/Pricing/Render.php
namespace VendorNameModule2BlockMagentoFrameworkPricing;
use MagentoFrameworkPricingAmountAmountInterface;
use MagentoFrameworkPricingPricePriceInterface;
use MagentoFrameworkPricingSaleableInterface;
use MagentoFrameworkPricingRenderLayout;
use MagentoFrameworkViewElementTemplate;
use VendorNameModule2HelperData;
/**
* Class Render
* @package VendorNameModule2BlockMagentoFrameworkPricing
*/
class Render extends MagentoFrameworkPricingRender
* @var VendorNameModule2HelperData
*/
private $dataHelper;
/**
* Render constructor.
* @param VendorNameModule2HelperData $dataHelper
* @param TemplateContext $context
* @param Layout $priceLayout
* @param array $data
*/
public function __construct(Data $dataHelper, TemplateContext $context, Layout $priceLayout, array $data)
$this->dataHelper = $dataHelper;
parent::__construct($context, $priceLayout, $data);
I searched for the call to render class on Module 1 i found it here
in venorName1/Module1/Helper/Catalog.php
namespace VendorName1Module1Helper;
use MagentoFrameworkStdlibDateTimeDateTime;
class Catalog extends MagentoFrameworkAppHelperAbstractHelper
private $date;
private $helper;
private $renderer;
private $block;
private $linkFactory;
private $optionBlock;
private $priceFormat;
private $imageHelper;
private $coreRegistry;
private $blockFactory;
private $productLinks;
private $priceCurrency;
private $pricingHelper;
private $objectManager;
private $catalogHelper;
private $storeInterface;
private $productFactory;
private $downloadHelper;
private $configurableBlock;
private $catalogProductHelper;
private $eachProduct = [];
public function __construct(
DateTime $date,
WebkulPosHelperData $helper,
MagentoFrameworkRegistry $coreRegistry,
MagentoCatalogHelperImage $imageHelper,
MagentoCatalogHelperData $catalogHelper,
MagentoFrameworkPricingRender $renderer,
MagentoFrameworkAppHelperContext $context,
MagentoFrameworkViewElementTemplate $block,
MagentoFrameworkFilesystemDirectoryList $dir,
WebkulPosBlockConfigurable $configurableBlock,
MagentoDownloadableHelperFile $downloadHelper,
MagentoFrameworkPricingHelperData $priceFormat,
MagentoCatalogModelProductFactory $productFactory,
MagentoFrameworkPricingHelperData $pricingHelper,
MagentoCatalogHelperProduct $catalogProductHelper,
MagentoDownloadableModelLinkFactory $linkFactory,
MagentoCatalogBlockProductViewOptions $optionBlock,
MagentoFrameworkObjectManagerInterface $objectManager,
MagentoFrameworkViewElementBlockFactory $blockFactory,
MagentoStoreModelStoreManagerInterface $storeInterface,
MagentoDownloadableBlockCatalogProductLinks $productLinks,
MagentoFrameworkPricingPriceCurrencyInterface $priceCurrency
)
$this->date = $date;
$this->helper = $helper;
$this->renderer = $renderer;
$this->block = $block;
$this->_baseDir = $dir->getPath("media");
$this->optionBlock = $optionBlock;
$this->priceFormat = $priceFormat;
$this->blockFactory = $blockFactory;
$this->coreRegistry = $coreRegistry;
$this->imageHelper = $imageHelper;
$this->priceCurrency = $priceCurrency;
$this->pricingHelper = $pricingHelper;
$this->objectManager = $objectManager;
$this->catalogHelper = $catalogHelper;
$this->productLinks = $productLinks;
$this->linkFactory = $linkFactory;
$this->downloadHelper = $downloadHelper;
$this->productFactory = $productFactory;
$this->storeInterface = $storeInterface;
$this->configurableBlock = $configurableBlock;
$this->catalogProductHelper = $catalogProductHelper;
parent::__construct($context);
How can i fix this error or debug it?
magento2 module third-party-module
I have 2 custom modules installed, when opening a front end of a module1, i get error related to module2, this is the error
Argument 4 passed to VendorNameModule2BlockMagentoFrameworkPricingRender::__construct() must be of the type array, null given, called in /var/www/html/magento2.3.1/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 117 [] []
In front end i got this error
Missing required argument $data of VendorNameModule2BlockMagentoFrameworkPricingRender.
As you see the module2 overrides MagentoFrameworkPricingRender.php class
On VendorName/Module2/Block/Magento/Framework/Pricing/Render.php
namespace VendorNameModule2BlockMagentoFrameworkPricing;
use MagentoFrameworkPricingAmountAmountInterface;
use MagentoFrameworkPricingPricePriceInterface;
use MagentoFrameworkPricingSaleableInterface;
use MagentoFrameworkPricingRenderLayout;
use MagentoFrameworkViewElementTemplate;
use VendorNameModule2HelperData;
/**
* Class Render
* @package VendorNameModule2BlockMagentoFrameworkPricing
*/
class Render extends MagentoFrameworkPricingRender
* @var VendorNameModule2HelperData
*/
private $dataHelper;
/**
* Render constructor.
* @param VendorNameModule2HelperData $dataHelper
* @param TemplateContext $context
* @param Layout $priceLayout
* @param array $data
*/
public function __construct(Data $dataHelper, TemplateContext $context, Layout $priceLayout, array $data)
$this->dataHelper = $dataHelper;
parent::__construct($context, $priceLayout, $data);
I searched for the call to render class on Module 1 i found it here
in venorName1/Module1/Helper/Catalog.php
namespace VendorName1Module1Helper;
use MagentoFrameworkStdlibDateTimeDateTime;
class Catalog extends MagentoFrameworkAppHelperAbstractHelper
private $date;
private $helper;
private $renderer;
private $block;
private $linkFactory;
private $optionBlock;
private $priceFormat;
private $imageHelper;
private $coreRegistry;
private $blockFactory;
private $productLinks;
private $priceCurrency;
private $pricingHelper;
private $objectManager;
private $catalogHelper;
private $storeInterface;
private $productFactory;
private $downloadHelper;
private $configurableBlock;
private $catalogProductHelper;
private $eachProduct = [];
public function __construct(
DateTime $date,
WebkulPosHelperData $helper,
MagentoFrameworkRegistry $coreRegistry,
MagentoCatalogHelperImage $imageHelper,
MagentoCatalogHelperData $catalogHelper,
MagentoFrameworkPricingRender $renderer,
MagentoFrameworkAppHelperContext $context,
MagentoFrameworkViewElementTemplate $block,
MagentoFrameworkFilesystemDirectoryList $dir,
WebkulPosBlockConfigurable $configurableBlock,
MagentoDownloadableHelperFile $downloadHelper,
MagentoFrameworkPricingHelperData $priceFormat,
MagentoCatalogModelProductFactory $productFactory,
MagentoFrameworkPricingHelperData $pricingHelper,
MagentoCatalogHelperProduct $catalogProductHelper,
MagentoDownloadableModelLinkFactory $linkFactory,
MagentoCatalogBlockProductViewOptions $optionBlock,
MagentoFrameworkObjectManagerInterface $objectManager,
MagentoFrameworkViewElementBlockFactory $blockFactory,
MagentoStoreModelStoreManagerInterface $storeInterface,
MagentoDownloadableBlockCatalogProductLinks $productLinks,
MagentoFrameworkPricingPriceCurrencyInterface $priceCurrency
)
$this->date = $date;
$this->helper = $helper;
$this->renderer = $renderer;
$this->block = $block;
$this->_baseDir = $dir->getPath("media");
$this->optionBlock = $optionBlock;
$this->priceFormat = $priceFormat;
$this->blockFactory = $blockFactory;
$this->coreRegistry = $coreRegistry;
$this->imageHelper = $imageHelper;
$this->priceCurrency = $priceCurrency;
$this->pricingHelper = $pricingHelper;
$this->objectManager = $objectManager;
$this->catalogHelper = $catalogHelper;
$this->productLinks = $productLinks;
$this->linkFactory = $linkFactory;
$this->downloadHelper = $downloadHelper;
$this->productFactory = $productFactory;
$this->storeInterface = $storeInterface;
$this->configurableBlock = $configurableBlock;
$this->catalogProductHelper = $catalogProductHelper;
parent::__construct($context);
How can i fix this error or debug it?
magento2 module third-party-module
magento2 module third-party-module
edited 2 days ago
tarek fellah
asked May 10 at 14:33
tarek fellahtarek fellah
195
195
In your module 1, are you trying to call your customer Render class or the default Magento framework one?
– mlunt
May 10 at 15:52
@mlunt it's the Magento Framework MagentoFrameworkPricingRender $renderer, on constructor $this->renderer = $renderer; I tried to call the Module 2 Render class but always same error
– tarek fellah
2 days ago
It may be looking for your new instance from module 1 because of the dependency inheritance. I’d put an echo statement in your module 1 class to confirm.
– mlunt
2 days ago
Put an cho on venorName1/Module1/Helper/Catalog.php or the page front end controller where i have the error?
– tarek fellah
2 days ago
In the module itself
– mlunt
2 days ago
add a comment |
In your module 1, are you trying to call your customer Render class or the default Magento framework one?
– mlunt
May 10 at 15:52
@mlunt it's the Magento Framework MagentoFrameworkPricingRender $renderer, on constructor $this->renderer = $renderer; I tried to call the Module 2 Render class but always same error
– tarek fellah
2 days ago
It may be looking for your new instance from module 1 because of the dependency inheritance. I’d put an echo statement in your module 1 class to confirm.
– mlunt
2 days ago
Put an cho on venorName1/Module1/Helper/Catalog.php or the page front end controller where i have the error?
– tarek fellah
2 days ago
In the module itself
– mlunt
2 days ago
In your module 1, are you trying to call your customer Render class or the default Magento framework one?
– mlunt
May 10 at 15:52
In your module 1, are you trying to call your customer Render class or the default Magento framework one?
– mlunt
May 10 at 15:52
@mlunt it's the Magento Framework MagentoFrameworkPricingRender $renderer, on constructor $this->renderer = $renderer; I tried to call the Module 2 Render class but always same error
– tarek fellah
2 days ago
@mlunt it's the Magento Framework MagentoFrameworkPricingRender $renderer, on constructor $this->renderer = $renderer; I tried to call the Module 2 Render class but always same error
– tarek fellah
2 days ago
It may be looking for your new instance from module 1 because of the dependency inheritance. I’d put an echo statement in your module 1 class to confirm.
– mlunt
2 days ago
It may be looking for your new instance from module 1 because of the dependency inheritance. I’d put an echo statement in your module 1 class to confirm.
– mlunt
2 days ago
Put an cho on venorName1/Module1/Helper/Catalog.php or the page front end controller where i have the error?
– tarek fellah
2 days ago
Put an cho on venorName1/Module1/Helper/Catalog.php or the page front end controller where i have the error?
– tarek fellah
2 days ago
In the module itself
– mlunt
2 days ago
In the module itself
– mlunt
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
Try deleting the generated directory -
rm -rf generated/
I got the same error
– tarek fellah
2 days ago
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f274196%2fmagento-2-error-on-an-overriden-constructor%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try deleting the generated directory -
rm -rf generated/
I got the same error
– tarek fellah
2 days ago
add a comment |
Try deleting the generated directory -
rm -rf generated/
I got the same error
– tarek fellah
2 days ago
add a comment |
Try deleting the generated directory -
rm -rf generated/
Try deleting the generated directory -
rm -rf generated/
answered May 10 at 17:02
tmcgrath92tmcgrath92
363
363
I got the same error
– tarek fellah
2 days ago
add a comment |
I got the same error
– tarek fellah
2 days ago
I got the same error
– tarek fellah
2 days ago
I got the same error
– tarek fellah
2 days ago
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f274196%2fmagento-2-error-on-an-overriden-constructor%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
In your module 1, are you trying to call your customer Render class or the default Magento framework one?
– mlunt
May 10 at 15:52
@mlunt it's the Magento Framework MagentoFrameworkPricingRender $renderer, on constructor $this->renderer = $renderer; I tried to call the Module 2 Render class but always same error
– tarek fellah
2 days ago
It may be looking for your new instance from module 1 because of the dependency inheritance. I’d put an echo statement in your module 1 class to confirm.
– mlunt
2 days ago
Put an cho on venorName1/Module1/Helper/Catalog.php or the page front end controller where i have the error?
– tarek fellah
2 days ago
In the module itself
– mlunt
2 days ago