79. 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.

79.1 Files compared

#LocationFileLast Modified
1Porto v4.0.5/Theme Files/Porto Theme/app/code/Smartwave/Dailydeals/Block/Adminhtml/Dailydeal/EditForm.php2018-03-14 03:41:06 +0000
2Porto v4.0.6/Theme Files/Porto Theme/app/code/Smartwave/Dailydeals/Block/Adminhtml/Dailydeal/EditForm.php2018-03-14 03:41:06 +0000

79.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged156
Changed00
Inserted00
Removed00

79.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

79.4 Active regular expressions

No regular expressions were active.

79.5 Comparison detail

1 <?php 1 <?php
2 namespace Smartwave\Dailydeals\Block\Adminhtml\Dailydeal\Edit; 2 namespace Smartwave\Dailydeals\Block\Adminhtml\Dailydeal\Edit;
3  3 
4 class Form extends \Magento\Backend\Block\Widget\Form\Generic 4 class Form extends \Magento\Backend\Block\Widget\Form\Generic
5 { 5 {
6     /** 6     /**
7      * Prepare form 7      * Prepare form
8      * 8      *
9      * @return $this 9      * @return $this
10      */ 10      */
11     protected function _prepareForm() 11     protected function _prepareForm()
12     { 12     {
13         /** @var \Magento\Framework\Data\Form $form */ 13         /** @var \Magento\Framework\Data\Form $form */
14         $form = $this->_formFactory->create( 14         $form = $this->_formFactory->create(
15             [ 15             [
16                 'data' => [ 16                 'data' => [
17                     'id' => 'edit_form', 17                     'id' => 'edit_form',
18                     'action' => $this->getData('action'), 18                     'action' => $this->getData('action'),
19                     'method' => 'post', 19                     'method' => 'post',
20                     'enctype' => 'multipart/form-data' 20                     'enctype' => 'multipart/form-data'
21                 ] 21                 ]
22             ] 22             ]
23         ); 23         );
24         $form->setUseContainer(true); 24         $form->setUseContainer(true);
25         $this->setForm($form); 25         $this->setForm($form);
26         return parent::_prepareForm(); 26         return parent::_prepareForm();
27     } 27     }
28 } 28 }