File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -118,9 +118,14 @@ public function renderArgumentType()
118
118
public function renderPhpDocValue ($ withName = false )
119
119
{
120
120
$ tagValue = '' ;
121
+ $ phpDocType = '' ;
121
122
if ($ this ->type ) {
122
- $ tagValue . = $ this ->type ->renderPhpDocType ();
123
+ $ phpDocType = $ this ->type ->renderPhpDocType ();
123
124
}
125
+ if (!trim ($ phpDocType )) {
126
+ $ phpDocType = PhpStdType::TYPE_MIXED ;
127
+ }
128
+ $ tagValue .= $ phpDocType ;
124
129
if ($ withName ) {
125
130
$ tagValue .= ' $ ' . $ this ->name ;
126
131
}
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public function renderPhpDocType()
44
44
if ($ this ->type instanceof OrType) {
45
45
return $ this ->type ->renderArrayPhpDocType ();
46
46
} elseif ($ this ->type === PhpStdType::mixed ()) {
47
- return '' ;
47
+ return 'array ' ;
48
48
} else {
49
49
return $ this ->type ->renderPhpDocType () . '[] ' ;
50
50
}
You can’t perform that action at this time.
0 commit comments