Skip to content

Commit

Permalink
ENGCOM-4276: Applied PHP-CS-Fixer: concat_space, no_multiline_whitesp…
Browse files Browse the repository at this point in the history
…ace_around_double_arrow, ordered_imports #21121
  • Loading branch information
sivaschenko authored Feb 18, 2019
2 parents 95dc3f5 + 34a4dfc commit 1bc4061
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -414,17 +414,17 @@ protected function getButtonSet()
'component' => 'Magento_Ui/js/form/components/button',
'actions' => [
[
'targetName' =>
$this->uiComponentsConfig['form'] . '.' . $this->uiComponentsConfig['form']
'targetName' => $this->uiComponentsConfig['form'] .
'.' . $this->uiComponentsConfig['form']
. '.'
. static::GROUP_GROUPED
. '.'
. $this->uiComponentsConfig['modal'],
'actionName' => 'openModal',
],
[
'targetName' =>
$this->uiComponentsConfig['form'] . '.' . $this->uiComponentsConfig['form']
'targetName' => $this->uiComponentsConfig['form'] .
'.' . $this->uiComponentsConfig['form']
. '.'
. static::GROUP_GROUPED
. '.'
Expand Down
4 changes: 2 additions & 2 deletions app/code/Magento/Webapi/Model/Config/ClassReflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ protected function extractMethodDescription(\Zend\Code\Reflection\MethodReflecti
$docBlock = $methodReflection->getDocBlock();
if (!$docBlock) {
throw new \LogicException(
'The docBlock of the method '.
$method->getDeclaringClass()->getName() . '::' . $method->getName() . ' is empty.'
'The docBlock of the method ' .
$method->getDeclaringClass()->getName() . '::' . $method->getName() . ' is empty.'
);
}
return $this->_typeProcessor->getDescription($docBlock);
Expand Down

0 comments on commit 1bc4061

Please sign in to comment.