Skip to content

Commit 395ef94

Browse files
authored
Improve comment description formatting in JSDoc (#54)
1 parent 57f9213 commit 395ef94

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

composer.lock

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/JSDoc/TypeBuilder.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,14 @@ private function makeObjectTypeDef(Schema $schema, $path)
288288

289289
private function description(Schema $schema)
290290
{
291-
$res = str_replace("\n", " ", $schema->title . $schema->description);
291+
$res = str_replace("\n", " ", trim($schema->title));
292+
if (trim($schema->description)) {
293+
if ($res) {
294+
$res .= ". ";
295+
}
296+
297+
$res .= str_replace("\n", " ", trim($schema->description));
298+
}
292299
if ($res) {
293300
return ' - ' . rtrim($res, '.') . '.';
294301
}

tests/src/PHPUnit/JSDoc/JSDocTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function testJsonSchema()
1616
"Person": {
1717
"type": "object",
1818
"properties": {
19-
"name": {"type": "string", "description": "Person name."},
19+
"name": {"type": "string", "title":" Name ", "description": "The name of the person."},
2020
"age": {"type": "integer"},
2121
"isMale": {"type": "boolean"},
2222
"partner": {"$ref": "#/definitions/Person"},
@@ -37,7 +37,7 @@ public function testJsonSchema()
3737
/**
3838
* @typedef Person
3939
* @type {Object}
40-
* @property {String} name - Person name.
40+
* @property {String} name - Name. The name of the person.
4141
* @property {Number} age
4242
* @property {Boolean} isMale
4343
* @property {Person} partner

0 commit comments

Comments
 (0)