Skip to content

Commit 08c35d4

Browse files
author
Vasiliev.A
committed
fix long string
1 parent 09b6e03 commit 08c35d4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

lib/internal/Magento/Framework/Communication/Config/ReflectionGenerator.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,13 @@ public function extractMethodMetadata($className, $methodName)
6969
* @param bool|null $isSynchronous
7070
* @return array
7171
*/
72-
public function generateTopicConfigForServiceMethod($topicName, $serviceType, $serviceMethod, $handlers = [], $isSynchronous = null)
73-
{
72+
public function generateTopicConfigForServiceMethod(
73+
$topicName,
74+
$serviceType,
75+
$serviceMethod,
76+
$handlers = [],
77+
$isSynchronous = null
78+
) {
7479
$methodMetadata = $this->extractMethodMetadata($serviceType, $serviceMethod);
7580
$returnType = $methodMetadata[Config::SCHEMA_METHOD_RETURN_TYPE];
7681
$returnType = ($returnType != 'void' && $returnType != 'null') ? $returnType : null;

0 commit comments

Comments
 (0)