File tree Expand file tree Collapse file tree 8 files changed +18
-16
lines changed
Block/Adminhtml/Sales/Order/View
Controller/Adminhtml/System/Config/System
Multishipping/Block/Checkout Expand file tree Collapse file tree 8 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 14
14
class Form extends \Magento \Backend \Block \Template
15
15
{
16
16
/**
17
- * Core registry
18
- *
19
17
* @var \Magento\Framework\Registry
20
18
*/
21
19
protected $ _coreRegistry = null ;
Original file line number Diff line number Diff line change 7
7
8
8
/**
9
9
* Adminhtml giftmessage save model
10
+ * @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
10
11
*/
11
12
class Save extends \Magento \Framework \DataObject
12
13
{
@@ -16,8 +17,6 @@ class Save extends \Magento\Framework\DataObject
16
17
protected $ _saved = false ;
17
18
18
19
/**
19
- * Gift message message
20
- *
21
20
* @var \Magento\GiftMessage\Helper\Message|null
22
21
*/
23
22
protected $ _giftMessageMessage = null ;
@@ -77,6 +76,8 @@ public function saveAllInQuote()
77
76
}
78
77
79
78
/**
79
+ * Get Saved
80
+ *
80
81
* @return bool
81
82
* @SuppressWarnings(PHPMD.BooleanGetMethodName)
82
83
* @codeCoverageIgnore
@@ -87,6 +88,8 @@ public function getSaved()
87
88
}
88
89
89
90
/**
91
+ * Save all order
92
+ *
90
93
* @return $this
91
94
*/
92
95
public function saveAllInOrder ()
@@ -299,6 +302,8 @@ public function importAllowQuoteItemsFromProducts($products)
299
302
}
300
303
301
304
/**
305
+ * Import allow quote item
306
+ *
302
307
* @param mixed $items
303
308
* @return $this
304
309
*/
Original file line number Diff line number Diff line change 13
13
class SalesEventOrderItemToQuoteItemObserver implements ObserverInterface
14
14
{
15
15
/**
16
- * Gift message message
17
- *
18
16
* @var \Magento\GiftMessage\Helper\Message|null
19
17
*/
20
18
protected $ _giftMessageMessage = null ;
Original file line number Diff line number Diff line change 13
13
class SalesEventOrderToQuoteObserver implements ObserverInterface
14
14
{
15
15
/**
16
- * Gift message message
17
- *
18
16
* @var \Magento\GiftMessage\Helper\Message|null
19
17
*/
20
18
protected $ _giftMessageMessage = null ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ abstract class Storage extends \Magento\Backend\App\Action
14
14
/**
15
15
* Authorization level of a basic admin session
16
16
*/
17
- const ADMIN_RESOURCE = 'Magento_Backend::system ' ;
17
+ public const ADMIN_RESOURCE = 'Magento_Backend::system ' ;
18
18
19
19
/**
20
20
* Return file storage singleton
Original file line number Diff line number Diff line change @@ -18,27 +18,27 @@ class Flag extends \Magento\Framework\Flag
18
18
/**
19
19
* There was no synchronization
20
20
*/
21
- const STATE_INACTIVE = 0 ;
21
+ public const STATE_INACTIVE = 0 ;
22
22
23
23
/**
24
24
* Synchronize process is active
25
25
*/
26
- const STATE_RUNNING = 1 ;
26
+ public const STATE_RUNNING = 1 ;
27
27
28
28
/**
29
29
* Synchronization finished
30
30
*/
31
- const STATE_FINISHED = 2 ;
31
+ public const STATE_FINISHED = 2 ;
32
32
33
33
/**
34
34
* Synchronization finished and notify message was formed
35
35
*/
36
- const STATE_NOTIFIED = 3 ;
36
+ public const STATE_NOTIFIED = 3 ;
37
37
38
38
/**
39
39
* Flag time to life in seconds
40
40
*/
41
- const FLAG_TTL = 300 ;
41
+ public const FLAG_TTL = 300 ;
42
42
43
43
/**
44
44
* Synchronize flag code
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Overview extends \Magento\Sales\Block\Items\AbstractItems
27
27
/**
28
28
* Block alias fallback
29
29
*/
30
- const DEFAULT_TYPE = 'default ' ;
30
+ public const DEFAULT_TYPE = 'default ' ;
31
31
32
32
/**
33
33
* @var \Magento\Multishipping\Model\Checkout\Type\Multishipping
@@ -417,8 +417,9 @@ public function getQuote()
417
417
/**
418
418
* Get billin address totals
419
419
*
420
- * @return mixed
420
+ * @return mixed
421
421
* @deprecated 100.2.3
422
+ * @see nothing
422
423
* typo in method name, see getBillingAddressTotals()
423
424
*/
424
425
public function getBillinAddressTotals ()
Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ public function getPaymentInfo()
47
47
}
48
48
49
49
/**
50
+ * To Html
51
+ *
50
52
* @return string
51
53
*/
52
54
protected function _toHtml ()
You can’t perform that action at this time.
0 commit comments