Skip to content

Commit ec4651f

Browse files
author
Yuri Kovsher
committed
MAGETWO-34589: Refactor controller actions in the Checkout area
1 parent f32d86b commit ec4651f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/internal/Magento/Framework/App/Action/AbstractAction.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ abstract class AbstractAction implements \Magento\Framework\App\ActionInterface
2424
*/
2525
protected $resultRedirectFactory;
2626

27+
/**
28+
* @var \Magento\Framework\Controller\ResultFactory;
29+
*/
30+
protected $resultFactory;
31+
2732
/**
2833
* @param \Magento\Framework\App\Action\Context $context
2934
*/
@@ -33,6 +38,7 @@ public function __construct(
3338
$this->_request = $context->getRequest();
3439
$this->_response = $context->getResponse();
3540
$this->resultRedirectFactory = $context->getResultRedirectFactory();
41+
$this->resultFactory = $context->getResultFactory();
3642
}
3743

3844
/**

0 commit comments

Comments
 (0)