Skip to content

Commit b3e39bb

Browse files
ENGCOM-4276: Applied PHP-CS-Fixer: concat_space, no_multiline_whitespace_around_double_arrow, ordered_imports #21121
- Merge Pull Request #21121 from yogeshsuhagiya/magento2:2.3-develop-PR-yogesh-5 - Merged commits: 1. 0a8b2e4
2 parents 741e610 + 0a8b2e4 commit b3e39bb

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/Grouped.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -414,17 +414,15 @@ protected function getButtonSet()
414414
'component' => 'Magento_Ui/js/form/components/button',
415415
'actions' => [
416416
[
417-
'targetName' =>
418-
$this->uiComponentsConfig['form'] . '.' . $this->uiComponentsConfig['form']
417+
'targetName' => $this->uiComponentsConfig['form'] . '.' . $this->uiComponentsConfig['form']
419418
. '.'
420419
. static::GROUP_GROUPED
421420
. '.'
422421
. $this->uiComponentsConfig['modal'],
423422
'actionName' => 'openModal',
424423
],
425424
[
426-
'targetName' =>
427-
$this->uiComponentsConfig['form'] . '.' . $this->uiComponentsConfig['form']
425+
'targetName' => $this->uiComponentsConfig['form'] . '.' . $this->uiComponentsConfig['form']
428426
. '.'
429427
. static::GROUP_GROUPED
430428
. '.'

app/code/Magento/Webapi/Model/Config/ClassReflector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ protected function extractMethodDescription(\Zend\Code\Reflection\MethodReflecti
129129
$docBlock = $methodReflection->getDocBlock();
130130
if (!$docBlock) {
131131
throw new \LogicException(
132-
'The docBlock of the method '.
133-
$method->getDeclaringClass()->getName() . '::' . $method->getName() . ' is empty.'
132+
'The docBlock of the method ' .
133+
$method->getDeclaringClass()->getName() . '::' . $method->getName() . ' is empty.'
134134
);
135135
}
136136
return $this->_typeProcessor->getDescription($docBlock);

0 commit comments

Comments
 (0)