Skip to content

Commit 00971d0

Browse files
authored
Fix code check for max line length
1 parent f2b46df commit 00971d0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/internal/Magento/Framework/ObjectManager/Factory/AbstractFactory.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@ protected function createObject($type, $args)
129129
);
130130

131131
throw new RuntimeException(
132-
new Phrase('Type Error occurred when creating object: %type, %msg', ['type' => $type, 'msg' => $exception->getMessage()])
132+
new Phrase('Type Error occurred when creating object: %type, %msg', [
133+
'type' => $type,
134+
'msg' => $exception->getMessage()
135+
])
133136
);
134137
}
135138
}

0 commit comments

Comments
 (0)