Skip to content

Commit 0ee5b5c

Browse files
authored
1 parent 70c2ae6 commit 0ee5b5c

File tree

17 files changed

+19
-17
lines changed

17 files changed

+19
-17
lines changed

.php-cs-fixer.dist.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
'phpdoc_types_order' => true,
3939
// @var and @type annotations must have type and name in the correct order.
4040
'phpdoc_var_annotation_correct_order' => true,
41+
// @var and @type annotations of classy properties should not contain the name.
42+
'phpdoc_var_without_name' => true,
4143
// Convert double quotes to single quotes for simple strings.
4244
'single_quote' => true,
4345
// Arguments lists, array destructuring lists, arrays that are multi-line, match-lines and parameters lists must have a trailing comma.

app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class Mage_Catalog_Block_Product_List_Toolbar extends Mage_Core_Block_Template
123123
protected $_defaultAvailableLimit = [10 => 10,20 => 20,50 => 50];
124124

125125
/**
126-
* @var bool $_paramsMemorizeAllowed
126+
* @var bool
127127
*/
128128
protected $_paramsMemorizeAllowed = true;
129129

app/code/core/Mage/Core/Controller/Request/Http.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Mage_Core_Controller_Request_Http extends Zend_Controller_Request_Http
5353
* Streight request flag.
5454
* If flag is determined no additional logic is applicable
5555
*
56-
* @var bool $_isStraight
56+
* @var bool
5757
*/
5858
protected $_isStraight = false;
5959

app/code/core/Mage/Paypal/Model/Direct.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class Mage_Paypal_Model_Direct extends Mage_Payment_Model_Method_Cc
5757
/**
5858
* Website Payments Pro instance type
5959
*
60-
* @var string $_proType
60+
* @var string
6161
*/
6262
protected $_proType = 'paypal/pro';
6363

app/code/core/Mage/Paypal/Model/Express.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Mage_Paypal_Model_Express extends Mage_Payment_Model_Method_Abstract imple
2121
/**
2222
* Website Payments Pro instance type
2323
*
24-
* @var string $_proType
24+
* @var string
2525
*/
2626
protected $_proType = 'paypal/pro';
2727

app/code/core/Mage/PaypalUk/Model/Express.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Mage_PaypalUk_Model_Express extends Mage_Paypal_Model_Express
2323
/**
2424
* Website Payments Pro instance type
2525
*
26-
* @var string $_proType
26+
* @var string
2727
*/
2828
protected $_proType = 'paypaluk/express_pro';
2929

app/code/core/Mage/Sales/Model/Resource/Setup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Mage_Sales_Model_Resource_Setup extends Mage_Eav_Model_Entity_Setup
1717
/**
1818
* List of entities converted from EAV to flat data structure
1919
*
20-
* @var array $_flatEntityTables
20+
* @var array
2121
*/
2222
protected $_flatEntityTables = [
2323
'quote' => 'sales/quote',
@@ -46,7 +46,7 @@ class Mage_Sales_Model_Resource_Setup extends Mage_Eav_Model_Entity_Setup
4646
/**
4747
* List of entities used with separate grid table
4848
*
49-
* @var array $_flatEntitiesGrid
49+
* @var array
5050
*/
5151
protected $_flatEntitiesGrid = [
5252
'order',

app/code/core/Mage/Tax/Model/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class Mage_Tax_Model_Config
162162
protected $_needUseShippingExcludeTax = false;
163163

164164
/**
165-
* @var bool $_shippingPriceIncludeTax
165+
* @var bool
166166
*/
167167
protected $_shippingPriceIncludeTax = null;
168168

app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Abstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ abstract class Mage_Usa_Model_Shipping_Carrier_Dhl_International_Source_Method_A
1717
/**
1818
* Carrier Product Type Indicator
1919
*
20-
* @var string $_contentType
20+
* @var string
2121
*/
2222
protected $_contentType;
2323

app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Doc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Mage_Usa_Model_Shipping_Carrier_Dhl_International_Source_Method_Doc extend
1717
/**
1818
* Carrier Product Type Indicator
1919
*
20-
* @var string $_contentType
20+
* @var string
2121
*/
2222
protected $_contentType = Mage_Usa_Model_Shipping_Carrier_Dhl_International::DHL_CONTENT_TYPE_DOC;
2323
}

0 commit comments

Comments
 (0)