Skip to content

Commit 6670614

Browse files
authored
1 parent 66855b4 commit 6670614

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

.php-cs-fixer.dist.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
'logical_operators' => true,
1313
// RISKY: Replaces intval, floatval, doubleval, strval and boolval function calls with according type casting operator.
1414
'modernize_types_casting' => true,
15+
// There should not be empty PHPDoc blocks.
16+
'no_empty_phpdoc' => true,
1517
// PHP84: Adds or removes ? before single type declarations or |null at the end of union types when parameters have a default null value.
1618
'nullable_type_declaration_for_default_null_value' => true,
1719
// Calls to PHPUnit\Framework\TestCase static methods must all be of the same type, either $this->, self:: or static::

app/code/core/Mage/Core/Model/Store.php

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -89,49 +89,28 @@ class Mage_Core_Model_Store extends Mage_Core_Model_Abstract
8989
*/
9090
public const PRICE_SCOPE_GLOBAL = 0;
9191

92-
/**
93-
*
94-
*/
9592
public const PRICE_SCOPE_WEBSITE = 1;
9693

9794
/**
9895
* Possible URL types
9996
*/
10097
public const URL_TYPE_LINK = 'link';
10198

102-
/**
103-
*
104-
*/
10599
public const URL_TYPE_DIRECT_LINK = 'direct_link';
106100

107-
/**
108-
*
109-
*/
110101
public const URL_TYPE_WEB = 'web';
111102

112-
/**
113-
*
114-
*/
115103
public const URL_TYPE_SKIN = 'skin';
116104

117-
/**
118-
*
119-
*/
120105
public const URL_TYPE_JS = 'js';
121106

122-
/**
123-
*
124-
*/
125107
public const URL_TYPE_MEDIA = 'media';
126108

127109
/**
128110
* Code constants
129111
*/
130112
public const DEFAULT_CODE = 'default';
131113

132-
/**
133-
*
134-
*/
135114
public const ADMIN_CODE = 'admin';
136115

137116
/**

0 commit comments

Comments
 (0)