@@ -153,7 +153,7 @@ public function getTypeString($schema, $path = '')
153
153
154
154
if ($ schema ->additionalProperties instanceof Schema) {
155
155
$ typeName = $ this ->getTypeString ($ schema ->additionalProperties , $ path . '/additionalProperties ' );
156
- $ or [] = "object<string, $ typeName> " ;
156
+ $ or [] = "Object.<String, $ typeName> " ;
157
157
$ typeAdded = true ;
158
158
}
159
159
@@ -168,7 +168,7 @@ public function getTypeString($schema, $path = '')
168
168
}
169
169
170
170
if (!$ typeAdded ) {
171
- $ or [] = 'object ' ;
171
+ $ or [] = 'Object ' ;
172
172
}
173
173
}
174
174
@@ -177,37 +177,37 @@ public function getTypeString($schema, $path = '')
177
177
178
178
if ($ schema ->items instanceof Schema) {
179
179
$ typeName = $ this ->getTypeString ($ schema ->items , $ path . '/items ' );
180
- $ or [] = "array <$ typeName> " ;
180
+ $ or [] = "Array <$ typeName> " ;
181
181
$ typeAdded = true ;
182
182
}
183
183
184
184
if ($ schema ->additionalItems instanceof Schema) {
185
185
$ typeName = $ this ->getTypeString ($ schema ->additionalItems , $ path . '/additionalItems ' );
186
- $ or [] = "array <$ typeName> " ;
186
+ $ or [] = "Array <$ typeName> " ;
187
187
$ typeAdded = true ;
188
188
}
189
189
190
190
if (!$ typeAdded ) {
191
- $ or [] = 'array ' ;
191
+ $ or [] = 'Array ' ;
192
192
}
193
193
}
194
194
195
195
if ($ isString ) {
196
- $ or [] = 'string ' ;
196
+ $ or [] = 'String ' ;
197
197
}
198
198
199
199
if ($ isNumber ) {
200
- $ or [] = 'number ' ;
200
+ $ or [] = 'Number ' ;
201
201
}
202
202
203
203
if ($ isBoolean ) {
204
- $ or [] = 'boolean ' ;
204
+ $ or [] = 'Boolean ' ;
205
205
}
206
206
207
207
$ res = '' ;
208
208
foreach ($ or as $ item ) {
209
209
if (!empty ($ item ) && $ item !== '* ' ) {
210
- $ res .= '| ' . $ item ;
210
+ $ res .= '| ' . ( $ isOptional ? ' ? ' : '' ) . $ item ;
211
211
}
212
212
}
213
213
@@ -256,14 +256,14 @@ private function makeObjectTypeDef(Schema $schema, $path)
256
256
$ res = <<<JSDOC
257
257
/** $ head
258
258
* @typedef {$ typeName }
259
- * @type {object }
259
+ * @type {Object }
260
260
261
261
JSDOC ;
262
262
if (!empty ($ schema ->properties )) {
263
263
foreach ($ schema ->properties as $ propertyName => $ propertySchema ) {
264
264
$ typeString = $ this ->getTypeString ($ propertySchema , $ path . '/ ' . $ propertyName );
265
265
$ res .= <<<JSDOC
266
- * @property { {$ typeString }} {$ propertyName }{$ this ->description ($ propertySchema )}.
266
+ * @property { {$ typeString }} {$ propertyName }{$ this ->description ($ propertySchema )}
267
267
268
268
JSDOC ;
269
269
@@ -285,7 +285,7 @@ private function description(Schema $schema)
285
285
{
286
286
$ res = str_replace ("\n" , " " , $ schema ->title . $ schema ->description );
287
287
if ($ res ) {
288
- return ' - ' . rtrim ($ res , '. ' );
288
+ return ' - ' . rtrim ($ res , '. ' ) . ' . ' ;
289
289
}
290
290
291
291
return '' ;
0 commit comments