Skip to content

Commit 8842635

Browse files
author
Eugene Tulika
committed
MAGETWO-38070: Incorrect WSDL generation
- fixed indentation
1 parent 86e25da commit 8842635

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/internal/Magento/Framework/Reflection/TypeProcessor.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -480,12 +480,12 @@ public function getParamType(ParameterReflection $param)
480480
$type = $param->getType();
481481
if ($param->getType() == 'null') {
482482
throw new \LogicException(sprintf(
483-
'@param annotation is incorrect for the parameter "%s" in the method "%s:%s".'
484-
. ' First declared type should not be null. E.g. string|null',
485-
$param->getName(),
486-
$param->getDeclaringClass()->getName(),
487-
$param->getDeclaringFunction()->name
488-
));
483+
'@param annotation is incorrect for the parameter "%s" in the method "%s:%s".'
484+
. ' First declared type should not be null. E.g. string|null',
485+
$param->getName(),
486+
$param->getDeclaringClass()->getName(),
487+
$param->getDeclaringFunction()->name
488+
));
489489
}
490490
if ($type == 'array') {
491491
// try to determine class, if it's array of objects

0 commit comments

Comments
 (0)