Skip to content

Commit 1bc4061

Browse files
authored
ENGCOM-4276: Applied PHP-CS-Fixer: concat_space, no_multiline_whitespace_around_double_arrow, ordered_imports #21121
2 parents 95dc3f5 + 34a4dfc commit 1bc4061

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -414,17 +414,17 @@ 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'] .
418+
'.' . $this->uiComponentsConfig['form']
419419
. '.'
420420
. static::GROUP_GROUPED
421421
. '.'
422422
. $this->uiComponentsConfig['modal'],
423423
'actionName' => 'openModal',
424424
],
425425
[
426-
'targetName' =>
427-
$this->uiComponentsConfig['form'] . '.' . $this->uiComponentsConfig['form']
426+
'targetName' => $this->uiComponentsConfig['form'] .
427+
'.' . $this->uiComponentsConfig['form']
428428
. '.'
429429
. static::GROUP_GROUPED
430430
. '.'

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)