Skip to content

Commit 5b08972

Browse files
committed
CS fix
1 parent b2ee1c6 commit 5b08972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Code/MethodGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public function generate(): ClassMethod
185185
$docBlockTypes = [];
186186

187187
foreach ($this->getParameters() as $parameter) {
188-
if(null === $parameter->getType()) {
188+
if (null === $parameter->getType()) {
189189
$type = 'mixed';
190190
} else {
191191
$type = $parameter->getType()->isNullable()

0 commit comments

Comments
 (0)