Skip to content

Commit ea001cc

Browse files
committed
MC-36802: SVC doesn't catch MINOR change in PATCH release when adding @api to a class
1 parent e6ac067 commit ea001cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Helper/Node.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function isApiNode(PhpNode $node)
3232
if (is_array($comments) && !empty($comments)) {
3333
foreach ($comments as $comment) {
3434
if ($comment instanceof DocComment) {
35-
$result = (strpos($comment->getText(),SemanticVersionChecker::ANNOTATION_API) !== false);
35+
$result = (strpos($comment->getText(), SemanticVersionChecker::ANNOTATION_API) !== false);
3636
if ($result) {
3737
break;
3838
}

0 commit comments

Comments
 (0)