Produced by Araxis Merge on 2023-03-13 03:01:03 +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.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | Porto v4.0.4/Porto Theme/app/code/Smartwave/Porto/Model/Config/Settings/Header | Type.php | 2021-06-22 03:20:18 +0000 |
| 2 | Porto v4.0.5/Porto Theme/app/code/Smartwave/Porto/Model/Config/Settings/Header | Type.php | 2023-02-15 08:52:39 +0000 |
| Description | Between Files 1 and 2 | |
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 118 |
| Changed | 2 | 10 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| Whitespace | Consecutive whitespace is treated as a single space |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
| Active line-pairing rules |
No regular expressions were active.
| 1 | <?php | 1 | <?php | |||
| 2 | namespace Smartwave\Porto\Model\Config\Settings\Header; | 2 | namespace Smartwave\Porto\Model\Config\Settings\Header; | |||
| 3 | 3 | |||||
| 4 | class Type implements \Magento\Framework\Option\ArrayInterface | 4 | class Type implements \Magento\Framework\Option\ArrayInterface | |||
| 5 | { | 5 | { | |||
| 6 | public function toOptionArray() | 6 | public function toOptionArray() | |||
| 7 | { | 7 | { | |||
| 8 | return [ | 8 | return [ | |||
| 9 | ['value' => '1', 'label' => __('Type 1')], | 9 | ['value' => '1', 'label' => __('Type 1')], | |||
| 10 | ['value' => '2', 'label' => __('Type 2')], | 10 | ['value' => '2', 'label' => __('Type 2')], | |||
| 11 | ['value' => '3', 'label' => __('Type 3')], | 11 | ['value' => '3', 'label' => __('Type 3')], | |||
| 12 | ['value' => '4', 'label' => __('Type 4')], | 12 | ['value' => '4', 'label' => __('Type 4')], | |||
| 13 | ['value' => '5', 'label' => __('Type 5')], | 13 | ['value' => '5', 'label' => __('Type 5')], | |||
| 14 | ['value' => '6', 'label' => __('Type 6')], | 14 | ['value' => '6', 'label' => __('Type 6')], | |||
| 15 | ['value' => '7', 'label' => __('Type 7')], | 15 | ['value' => '7', 'label' => __('Type 7')], | |||
| 16 | ['value' => '8', 'label' => __('Type 8')], | 16 | ['value' => '8', 'label' => __('Type 8')], | |||
| 17 | ['value' => '9', 'label' => __('Type 9')], | 17 | ['value' => '9', 'label' => __('Type 9')], | |||
| 18 | ['value' => '10', 'label' => __('Type 10')], | 18 | ['value' => '10', 'label' => __('Type 10')], | |||
| 19 | ['value' => '11', 'label' => __('Type 11')], | 19 | ['value' => '11', 'label' => __('Type 11')], | |||
| 20 | ['value' => '12', 'label' => __('Type 12')], | 20 | ['value' => '12', 'label' => __('Type 12')], | |||
| 21 | ['value' => '13', 'label' => __('Type 13')], | 21 | ['value' => '13', 'label' => __('Type 13')], | |||
| 22 | ['value' => '14', 'label' => __('Type 14')], | 22 | ['value' => '14', 'label' => __('Type 14')], | |||
| 23 | ['value' => '15', 'label' => __('Type 15')], | 23 | ['value' => '15', 'label' => __('Type 15')], | |||
| 24 | ['value' => '16', 'label' => __('Type 16')], | 24 | ['value' => '16', 'label' => __('Type 16')], | |||
| 25 | ['value' => '17', 'label' => __('Type 17')], | 25 | ['value' => '17', 'label' => __('Type 17')], | |||
| 26 | ['value' => '18', 'label' => __('Type 18')], | 26 | ['value' => '18', 'label' => __('Type 18')], | |||
| 27 | ['value' => '19', 'label' => __('Type 19')], | 27 | ['value' => '19', 'label' => __('Type 19')], | |||
| 28 | ['value' => '20', 'label' => __('Type 20')], | 28 | ['value' => '20', 'label' => __('Type 20')], | |||
| 29 | ['value' => '21', 'label' => __('Type 21')], | 29 | ['value' => '21', 'label' => __('Type 21')], | |||
| 30 | ['value' => '22', 'label' => __('Type 22')] | 30 | ['value' => '22', 'label' => __('Type 22')], | |||
| 31 | ['value' => '23', 'label' => __('Type 23')], | |||||
| 32 | ['value' => '24', 'label' => __('Type 24')], | |||||
| 33 | ['value' => '25', 'label' => __('Type 25')] | |||||
| 31 | ]; | 34 | ]; | |||
| 32 | } | 35 | } | |||
| 33 | 36 | |||||
| 34 | public function toArray() | 37 | public function toArray() | |||
| 35 | { | 38 | { | |||
| 36 | return [ | 39 | return [ | |||
| 37 | '1' => __('Type 1'), | 40 | '1' => __('Type 1'), | |||
| 38 | '2' => __('Type 2'), | 41 | '2' => __('Type 2'), | |||
| 39 | '3' => __('Type 3'), | 42 | '3' => __('Type 3'), | |||
| 40 | '4' => __('Type 4'), | 43 | '4' => __('Type 4'), | |||
| 41 | '5' => __('Type 5'), | 44 | '5' => __('Type 5'), | |||
| 42 | '6' => __('Type 6'), | 45 | '6' => __('Type 6'), | |||
| 43 | '7' => __('Type 7'), | 46 | '7' => __('Type 7'), | |||
| 44 | '8' => __('Type 8'), | 47 | '8' => __('Type 8'), | |||
| 45 | '9' => __('Type 9'), | 48 | '9' => __('Type 9'), | |||
| 46 | '10' => __('Type 10'), | 49 | '10' => __('Type 10'), | |||
| 47 | '11' => __('Type 11'), | 50 | '11' => __('Type 11'), | |||
| 48 | '12' => __('Type 12'), | 51 | '12' => __('Type 12'), | |||
| 49 | '13' => __('Type 13'), | 52 | '13' => __('Type 13'), | |||
| 50 | '14' => __('Type 14'), | 53 | '14' => __('Type 14'), | |||
| 51 | '15' => __('Type 15'), | 54 | '15' => __('Type 15'), | |||
| 52 | '16' => __('Type 16'), | 55 | '16' => __('Type 16'), | |||
| 53 | '17' => __('Type 17'), | 56 | '17' => __('Type 17'), | |||
| 54 | '18' => __('Type 18'), | 57 | '18' => __('Type 18'), | |||
| 55 | '19' => __('Type 19'), | 58 | '19' => __('Type 19'), | |||
| 56 | '20' => __('Type 20'), | 59 | '20' => __('Type 20'), | |||
| 57 | '21' => __('Type 21'), | 60 | '21' => __('Type 21'), | |||
| 58 | '22' => __('Type 22') | 61 | '22' => __('Type 22'), | |||
| 62 | '23' => __('Type 23'), | |||||
| 63 | '24' => __('Type 24'), | |||||
| 64 | '25' => __('Type 25') | |||||
| 59 | ]; | 65 | ]; | |||
| 60 | } | 66 | } | |||
| 61 | } | 67 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993–2019 Araxis Ltd (www.araxis.com). All rights reserved.