Skip to content

Commit ebd15ff

Browse files
committed
Fix > PHP Code Sniffer violation : Tags visual alignment must be consistent
1 parent 0f20067 commit ebd15ff

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

app/code/Magento/Backend/App/AbstractAction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ protected function _processLocaleSettings()
323323
* Set redirect into response
324324
*
325325
* @TODO MAGETWO-28356: Refactor controller actions to new ResultInterface
326-
* @param string $path
327-
* @param array $arguments
326+
* @param string $path
327+
* @param array $arguments
328328
* @return \Magento\Framework\App\ResponseInterface
329329
*/
330330
protected function _redirect($path, $arguments = [])

app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function getColumn()
5555
* Renders grid column
5656
*
5757
* @param DataObject $row
58-
* @return string
58+
* @return string
5959
*/
6060
public function render(DataObject $row)
6161
{

app/code/Magento/Catalog/Model/AbstractModel.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,8 @@ private function getAttributeScopeOverriddenValue()
315315
/**
316316
* Retrieve default value for attribute code
317317
*
318-
* @param string $attributeCode
319-
* @return array|boolean
318+
* @param string $attributeCode
319+
* @return array|boolean
320320
*
321321
* @deprecated 101.0.0
322322
*/
@@ -350,8 +350,8 @@ public function setExistsStoreValueFlag($attributeCode)
350350
/**
351351
* Check if object attribute has value in current store
352352
*
353-
* @param string $attributeCode
354-
* @return bool
353+
* @param string $attributeCode
354+
* @return bool
355355
* @SuppressWarnings(PHPMD.BooleanGetMethodName)
356356
*
357357
* @deprecated 101.0.0

app/code/Magento/Catalog/Model/Layer/Filter/AbstractFilter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,9 +363,9 @@ public function getClearLinkText()
363363
/**
364364
* Get option text from frontend model by option id
365365
*
366-
* @param int $optionId
366+
* @param int $optionId
367367
* @throws \Magento\Framework\Exception\LocalizedException
368-
* @return string|bool
368+
* @return string|bool
369369
*/
370370
protected function getOptionText($optionId)
371371
{

app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/AbstractIndexer.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ protected function _getAttribute($attributeCode)
6666
* If $condition is not empty apply limitation for select
6767
*
6868
* @param \Magento\Framework\DB\Select $select
69-
* @param string $attrCode the attribute code
70-
* @param string|\Zend_Db_Expr $entity the entity field or expression for condition
71-
* @param string|\Zend_Db_Expr $store the store field or expression for condition
72-
* @param \Zend_Db_Expr $condition the limitation condition
73-
* @param bool $required if required or has condition used INNER join, else - LEFT
74-
* @return \Zend_Db_Expr the attribute value expression
69+
* @param string $attrCode the attribute code
70+
* @param string|\Zend_Db_Expr $entity the entity field or expression for condition
71+
* @param string|\Zend_Db_Expr $store the store field or expression for condition
72+
* @param \Zend_Db_Expr $condition the limitation condition
73+
* @param bool $required if required or has condition used INNER join, else - LEFT
74+
* @return \Zend_Db_Expr the attribute value expression
7575
*/
7676
protected function _addAttributeToSelect($select, $attrCode, $entity, $store, $condition = null, $required = false)
7777
{

app/code/Magento/Quote/Model/Quote/Address/Total/AbstractTotal.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public function fetch(\Magento\Quote\Model\Quote $quote, \Magento\Quote\Model\Qu
120120
/**
121121
* Set address which can be used inside totals calculation
122122
*
123-
* @param \Magento\Quote\Model\Quote\Address $address
123+
* @param \Magento\Quote\Model\Quote\Address $address
124124
* @return $this
125125
*/
126126
protected function _setAddress(\Magento\Quote\Model\Quote\Address $address)
@@ -132,8 +132,8 @@ protected function _setAddress(\Magento\Quote\Model\Quote\Address $address)
132132
/**
133133
* Get quote address object
134134
*
135-
* @return \Magento\Quote\Model\Quote\Address
136-
* @throws \Magento\Framework\Exception\LocalizedException if address not declared
135+
* @return \Magento\Quote\Model\Quote\Address
136+
* @throws \Magento\Framework\Exception\LocalizedException if address not declared
137137
*/
138138
protected function _getAddress()
139139
{
@@ -173,7 +173,7 @@ protected function _getTotal()
173173
/**
174174
* Set total model amount value to address
175175
*
176-
* @param float $amount
176+
* @param float $amount
177177
* @return $this
178178
*/
179179
protected function _setAmount($amount)
@@ -202,7 +202,7 @@ protected function _setBaseAmount($baseAmount)
202202
/**
203203
* Add total model amount value to address
204204
*
205-
* @param float $amount
205+
* @param float $amount
206206
* @return $this
207207
*/
208208
protected function _addAmount($amount)

app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public function setMessage($messages)
256256
/**
257257
* Add message of quote item to array of messages
258258
*
259-
* @param string $message
259+
* @param string $message
260260
* @return $this
261261
*/
262262
public function addMessage($message)

0 commit comments

Comments
 (0)