code styles fixes only

This commit is contained in:
Lars Moelleken
2020-10-24 10:29:01 +02:00
parent 8c3953ef86
commit 591f5935c9
2 changed files with 5 additions and 4 deletions
+4 -2
View File
@@ -175,9 +175,11 @@ final class DocBlock
$result = [];
foreach ($this->getTagsByName($name) as $tag) {
if ($tag instanceof TagWithType) {
$result[] = $tag;
if (!$tag instanceof TagWithType) {
continue;
}
$result[] = $tag;
}
return $result;