How to remove the Deprecated property of __construct from Abstract Class using overriding or any other way
Error main.ERROR: Deprecated Functionality: Creation of dynamic property MagiccartMagicproductControllerAdminhtmlProductIndexInterceptor::$_resultRedirectFactory is deprecated in vendor/magiccart/magicproduct/Controller/Adminhtml/Action.php on line 78 Class namespace MagiccartMagicproductControllerAdminhtmlAction abstract class Action extends MagentoBackendAppAction { public function __construct( MagentoBackendAppActionContext $context, ) { parent::__construct($context); $this->_resultRedirectFactory = $context->getResultRedirectFactory(); } Class MagiccartMagicproductControllerAdminhtmlProductIndex class… Read More »How to remove the Deprecated property of __construct from Abstract Class using overriding or any other way