The doc-type array<string, could not be parsed: Expected ">" at position 5, but found "end of type". (view supported doc-types)
This check marks PHPDoc comments that could not be parsed by our parser. To see
which comment annotations we can parse, please refer to our documentation on
supported doc-types.
Loading history...
35
*/
36
15
public function getAttributes(): array
37
{
38
15
return $this->attributes;
39
}
40
41
public function canContain(AbstractBlock $block): bool
42
{
43
return false;
44
}
45
46
15
public function isCode(): bool
47
{
48
15
return false;
49
}
50
51
12
public function matchesNextLine(Cursor $cursor): bool
52
{
53
12
$this->setLastLineBlank($cursor->isBlank());
54
55
12
return false;
56
}
57
58
15
public function shouldLastLineBeBlank(Cursor $cursor, int $currentLineNumber): bool
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.