File tree 3 files changed +17
-17
lines changed
ConfigurableProduct/Model/Product/Type/Configurable
CustomerImportExport/Model/Export 3 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 18
18
class Attribute extends \Magento \Framework \Model \AbstractExtensibleModel implements
19
19
\Magento \ConfigurableProduct \Api \Data \OptionInterface
20
20
{
21
- /**#@+
21
+ /**
22
22
* Constants for field names
23
23
*/
24
24
const KEY_ATTRIBUTE_ID = 'attribute_id ' ;
@@ -27,9 +27,10 @@ class Attribute extends \Magento\Framework\Model\AbstractExtensibleModel impleme
27
27
const KEY_IS_USE_DEFAULT = 'is_use_default ' ;
28
28
const KEY_VALUES = 'values ' ;
29
29
const KEY_PRODUCT_ID = 'product_id ' ;
30
- /**#@-*/
31
30
32
- /**#@-*/
31
+ /**
32
+ * @var MetadataPool|\Magento\Framework\EntityManager\MetadataPool
33
+ */
33
34
private $ metadataPool ;
34
35
35
36
/**
Original file line number Diff line number Diff line change 15
15
*/
16
16
class Customer extends \Magento \ImportExport \Model \Export \Entity \AbstractEav
17
17
{
18
- /**#@+
18
+ /**
19
19
* Permanent column names.
20
20
*
21
21
* Names that begins with underscore is not an attribute. This name convention is for
@@ -27,23 +27,19 @@ class Customer extends \Magento\ImportExport\Model\Export\Entity\AbstractEav
27
27
28
28
const COLUMN_STORE = '_store ' ;
29
29
30
- /**#@-*/
31
-
32
- /**#@+
30
+ /**
33
31
* Attribute collection name
34
32
*/
35
33
const ATTRIBUTE_COLLECTION_NAME = \Magento \Customer \Model \ResourceModel \Attribute \Collection::class;
36
34
37
- /**#@-*/
38
-
39
- /**#@+
35
+ /**
40
36
* XML path to page size parameter
41
37
*/
42
38
const XML_PATH_PAGE_SIZE = 'export/customer_page_size/customer ' ;
43
39
44
- /**#@-*/
45
-
46
- /**#@- */
40
+ /**
41
+ * @var array
42
+ */
47
43
protected $ _attributeOverrides = [
48
44
'created_at ' => ['backend_type ' => 'datetime ' ],
49
45
'reward_update_notification ' => ['source_model ' => \Magento \Eav \Model \Entity \Attribute \Source \Boolean::class],
Original file line number Diff line number Diff line change 11
11
*/
12
12
class Data extends \Magento \Framework \App \Helper \AbstractHelper
13
13
{
14
- /**#@+
14
+ /*
15
15
* Xml paths for multishipping checkout
16
+ *
16
17
**/
17
18
const XML_PATH_CHECKOUT_MULTIPLE_AVAILABLE = 'multishipping/options/checkout_multiple ' ;
18
19
19
20
const XML_PATH_CHECKOUT_MULTIPLE_MAXIMUM_QUANTITY = 'multishipping/options/checkout_multiple_maximum_qty ' ;
20
21
21
- /**#@-*/
22
-
23
- /**#@-*/
22
+ /**
23
+ * Checkout session
24
+ *
25
+ * @var \Magento\Checkout\Model\Session
26
+ */
24
27
protected $ checkoutSession ;
25
28
26
29
/**
You can’t perform that action at this time.
0 commit comments