Skip to content

Commit 04b77be

Browse files
author
Stanislav Idolov
authored
ENGCOM-2882: Removed unnecessary characters from comments #17814
2 parents 8254900 + 5207bc5 commit 04b77be

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Attribute.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class Attribute extends \Magento\Framework\Model\AbstractExtensibleModel implements
1919
\Magento\ConfigurableProduct\Api\Data\OptionInterface
2020
{
21-
/**#@+
21+
/**
2222
* Constants for field names
2323
*/
2424
const KEY_ATTRIBUTE_ID = 'attribute_id';
@@ -27,9 +27,10 @@ class Attribute extends \Magento\Framework\Model\AbstractExtensibleModel impleme
2727
const KEY_IS_USE_DEFAULT = 'is_use_default';
2828
const KEY_VALUES = 'values';
2929
const KEY_PRODUCT_ID = 'product_id';
30-
/**#@-*/
3130

32-
/**#@-*/
31+
/**
32+
* @var MetadataPool|\Magento\Framework\EntityManager\MetadataPool
33+
*/
3334
private $metadataPool;
3435

3536
/**

app/code/Magento/CustomerImportExport/Model/Export/Customer.php

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
class Customer extends \Magento\ImportExport\Model\Export\Entity\AbstractEav
1717
{
18-
/**#@+
18+
/**
1919
* Permanent column names.
2020
*
2121
* 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
2727

2828
const COLUMN_STORE = '_store';
2929

30-
/**#@-*/
31-
32-
/**#@+
30+
/**
3331
* Attribute collection name
3432
*/
3533
const ATTRIBUTE_COLLECTION_NAME = \Magento\Customer\Model\ResourceModel\Attribute\Collection::class;
3634

37-
/**#@-*/
38-
39-
/**#@+
35+
/**
4036
* XML path to page size parameter
4137
*/
4238
const XML_PATH_PAGE_SIZE = 'export/customer_page_size/customer';
4339

44-
/**#@-*/
45-
46-
/**#@-*/
40+
/**
41+
* @var array
42+
*/
4743
protected $_attributeOverrides = [
4844
'created_at' => ['backend_type' => 'datetime'],
4945
'reward_update_notification' => ['source_model' => \Magento\Eav\Model\Entity\Attribute\Source\Boolean::class],

app/code/Magento/Multishipping/Helper/Data.php

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,19 @@
1111
*/
1212
class Data extends \Magento\Framework\App\Helper\AbstractHelper
1313
{
14-
/**#@+
14+
/*
1515
* Xml paths for multishipping checkout
16+
*
1617
**/
1718
const XML_PATH_CHECKOUT_MULTIPLE_AVAILABLE = 'multishipping/options/checkout_multiple';
1819

1920
const XML_PATH_CHECKOUT_MULTIPLE_MAXIMUM_QUANTITY = 'multishipping/options/checkout_multiple_maximum_qty';
2021

21-
/**#@-*/
22-
23-
/**#@-*/
22+
/**
23+
* Checkout session
24+
*
25+
* @var \Magento\Checkout\Model\Session
26+
*/
2427
protected $checkoutSession;
2528

2629
/**

0 commit comments

Comments
 (0)