24 lines
521 B
PHP
Executable File
24 lines
521 B
PHP
Executable File
<?php
|
|
|
|
namespace IpSupply\CartToQuote\Controller\Cart;
|
|
|
|
use Magento\Framework\App\Action\Context;
|
|
use Magento\Framework\View\Result\PageFactory;
|
|
|
|
class History extends \Magento\Framework\App\Action\Action {
|
|
|
|
protected $pageFactory;
|
|
|
|
public function __construct(Context $context, PageFactory $pageFactory)
|
|
{
|
|
$this->pageFactory = $pageFactory;
|
|
parent::__construct($context);
|
|
}
|
|
|
|
public function execute()
|
|
{
|
|
return $this->pageFactory->create();
|
|
}
|
|
|
|
}
|