small fixes

This commit is contained in:
Orklah
2020-02-20 21:26:56 +01:00
parent 45e5409b3f
commit 43288974a5
23 changed files with 62 additions and 55 deletions
+3 -3
View File
@@ -19,7 +19,7 @@ use Webmozart\Assert\Assert;
final class DocBlock
{
/** @var string The opening line for this docblock. */
private $summary = '';
private $summary;
/** @var DocBlock\Description The actual description for this docblock. */
private $description;
@@ -34,10 +34,10 @@ final class DocBlock
private $location;
/** @var bool Is this DocBlock (the start of) a template? */
private $isTemplateStart = false;
private $isTemplateStart;
/** @var bool Does this DocBlock signify the end of a DocBlock template? */
private $isTemplateEnd = false;
private $isTemplateEnd;
/**
* @param DocBlock\Tag[] $tags