92. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2023-07-12 04:42:38 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

92.1 Files compared

#LocationFileLast Modified
1Porto v4.0.5/Theme Files/Porto Theme/app/code/Smartwave/Dailydeals/Controller/DealView.php2018-03-14 03:45:34 +0000
2Porto v4.0.6/Theme Files/Porto Theme/app/code/Smartwave/Dailydeals/Controller/DealView.php2023-06-13 03:48:49 +0000

92.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged560
Changed36
Inserted00
Removed11

92.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

92.4 Active regular expressions

No regular expressions were active.

92.5 Comparison detail

1 <?php 1 <?php
2 namespace Smartwave\Dailydeals\Controller\Deal; 2 namespace Smartwave\Dailydeals\Controller\Deal;
3  3 
4 use Magento\Framework\View\Result\PageFactory; 4 use Magento\Framework\View\Result\PageFactory;
5 use Magento\Framework\App\Action\Context; 5 use Magento\Framework\App\Action\Context;
6  6 
7 class View extends \Magento\Framework\App\Action\Action 7 class View extends \Magento\Framework\App\Action\Action
8 { 8 {
9     protected $pageFactory; 9     protected $pageFactory;
10     protected $resultRedirectFactory; 10     protected $resultRedirectFactory;
11     protected $scopeConfig; 11     protected $scopeConfig;
12      12 
13     public function __construct( 13     public function __construct(
14         Context $context, 14         Context $context,
15         PageFactory $pageFactory, 15         PageFactory $pageFactory,
16         \Magento\Backend\Model\View\Result\RedirectFactory $resultRedirectFactory, 16         \Magento\Backend\Model\View\Result\RedirectFactory $resultRedirectFactory,
17         \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig 17         \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
18     ) { 18     ) {
19      19 
20         $this->pageFactory = $pageFactory; 20         $this->pageFactory = $pageFactory;
21         $this->resultRedirectFactory=$resultRedirectFactory; 21         $this->resultRedirectFactory=$resultRedirectFactory;
22         $this->scopeConfig=$scopeConfig; 22         $this->scopeConfig=$scopeConfig;
23          23 
24         return parent::__construct($context); 24         return parent::__construct($context);
25     } 25     }
26  26 
27     public function execute() 27     public function execute()
28     { 28     {
29         $storeScope = \Magento\Store\Model\ScopeInterface::SCOPE_STORE; 29         $storeScope = \Magento\Store\Model\ScopeInterface::SCOPE_STORE;
30          
31               $page_object = $this->pageFactory->create(); 30         $page_object = $this->pageFactory->create();
32               return $page_object; 31         return $page_object;
33     } 32     }
34 } 33 }