Skip to content

Commit ed3927f

Browse files
author
Oleksii Korshenko
committed
MAGETWO-71174: Update doc block information in php classes with @deprecated and @SInCE tags
- fixed missing items
1 parent 73d960d commit ed3927f

File tree

8 files changed

+15
-3
lines changed

8 files changed

+15
-3
lines changed

app/code/Magento/Customer/Ui/Component/Listing/AttributeRepository.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ class AttributeRepository
2222
{
2323
const BILLING_ADDRESS_PREFIX = 'billing_';
2424

25-
/** @var [] */
25+
/**
26+
* @var array
27+
* @since 2.0.0
28+
*/
2629
protected $attributes;
2730

2831
/**

app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class YahooFinance extends \Magento\Directory\Model\Currency\Import\AbstractImpo
1717
* Currency converter url string
1818
*
1919
* @var string
20+
* @since 2.1.0
2021
*/
2122
private $currencyConverterUrl = 'http://query.yahooapis.com/v1/public/yql?format=json&q={{YQL_STRING}}&env=store://datatables.org/alltableswithkeys';
2223
// @codingStandardsIgnoreEnd

app/code/Magento/ImportExport/Model/Import/AbstractEntity.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ abstract class AbstractEntity
6565

6666
/**
6767
* @var array
68+
* @since 2.0.0
6869
*/
6970
protected $errorMessageTemplates = [
7071
self::ERROR_CODE_SYSTEM_EXCEPTION => 'General system exception happened',

app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ abstract class AbstractEntity
4949

5050
/**
5151
* @var array
52+
* @since 2.0.0
5253
*/
5354
protected $errorMessageTemplates = [
5455
self::ERROR_CODE_SYSTEM_EXCEPTION => 'General system exception happened',

app/code/Magento/Sales/Model/Order/Creditmemo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Creditmemo extends AbstractModel implements EntityInterface, CreditmemoInt
4242

4343
const REPORT_DATE_TYPE_REFUND_CREATED = 'refund_created';
4444

45-
/*
45+
/**
4646
* Identifier for order history item
4747
*
4848
* @var string

app/code/Magento/Tax/Setup/UpgradeData.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class UpgradeData implements UpgradeDataInterface
3737

3838
/**
3939
* @var SearchCriteriaFactory
40+
* @since 2.2.0
4041
*/
4142
private $searchCriteriaFactory;
4243

lib/internal/Magento/Framework/App/ObjectManager/Environment/Compiled.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@ class Compiled extends AbstractEnvironment implements EnvironmentInterface
2323
* Mode name
2424
*/
2525
const MODE = 'compiled';
26+
/**#@- */
2627

28+
/**
29+
* @var string
30+
* @since 2.0.0
31+
*/
2732
protected $mode = self::MODE;
28-
/**#@- */
2933

3034
/**
3135
* @var string

lib/internal/Magento/Framework/App/ObjectManager/Environment/Developer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class Developer extends AbstractEnvironment implements EnvironmentInterface
2626

2727
/**
2828
* @var string
29+
* @since 2.0.0
2930
*/
3031
protected $mode = self::MODE;
3132

0 commit comments

Comments
 (0)