File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
app/code/Magento/Sales/Helper
lib/internal/Magento/Framework/View/Model/Layout Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -67,17 +67,17 @@ class Guest extends \Magento\Framework\App\Helper\AbstractHelper
67
67
/**
68
68
* Cookie key for guest view
69
69
*/
70
- const COOKIE_NAME = 'guest-view ' ;
70
+ public const COOKIE_NAME = 'guest-view ' ;
71
71
72
72
/**
73
73
* Cookie path value
74
74
*/
75
- const COOKIE_PATH = '/ ' ;
75
+ public const COOKIE_PATH = '/ ' ;
76
76
77
77
/**
78
78
* Cookie lifetime value
79
79
*/
80
- const COOKIE_LIFETIME = 600 ;
80
+ public const COOKIE_LIFETIME = 600 ;
81
81
82
82
/**
83
83
* @var \Magento\Store\Model\StoreManagerInterface
Original file line number Diff line number Diff line change @@ -25,27 +25,27 @@ class Merge implements \Magento\Framework\View\Layout\ProcessorInterface
25
25
/**
26
26
* Layout abstraction based on designer prerogative.
27
27
*/
28
- const DESIGN_ABSTRACTION_CUSTOM = 'custom ' ;
28
+ public const DESIGN_ABSTRACTION_CUSTOM = 'custom ' ;
29
29
30
30
/**
31
31
* Layout generalization guaranteed to load into View
32
32
*/
33
- const DESIGN_ABSTRACTION_PAGE_LAYOUT = 'page_layout ' ;
33
+ public const DESIGN_ABSTRACTION_PAGE_LAYOUT = 'page_layout ' ;
34
34
35
35
/**
36
36
* XPath of handles originally declared in layout updates
37
37
*/
38
- const XPATH_HANDLE_DECLARATION = '/layout[@design_abstraction] ' ;
38
+ public const XPATH_HANDLE_DECLARATION = '/layout[@design_abstraction] ' ;
39
39
40
40
/**
41
41
* Name of an attribute that stands for data type of node values
42
42
*/
43
- const TYPE_ATTRIBUTE = 'xsi:type ' ;
43
+ public const TYPE_ATTRIBUTE = 'xsi:type ' ;
44
44
45
45
/**
46
46
* Cache id suffix for page layout
47
47
*/
48
- const PAGE_LAYOUT_CACHE_SUFFIX = 'page_layout_merged ' ;
48
+ public const PAGE_LAYOUT_CACHE_SUFFIX = 'page_layout_merged ' ;
49
49
50
50
/**
51
51
* Default cache life time
You can’t perform that action at this time.
0 commit comments