Skip to content

Commit b2d8b1c

Browse files
committed
fix order of ?
Signed-off-by: Robert Landers <landers.robert@gmail.com>
1 parent 0ce9fa0 commit b2d8b1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Proxy/Generator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ protected function getTypes(ReflectionNamedType|ReflectionUnionType|ReflectionIn
139139
if ($type->isBuiltin()) {
140140
return $nullable . $type->getName();
141141
}
142-
return '\\' . $nullable . $type->getName();
142+
return $nullable . '\\' . $type->getName();
143143
}
144144

145145
if ($type instanceof ReflectionUnionType) {

0 commit comments

Comments
 (0)