Skip to content

Commit 874c9d7

Browse files
MC-19366: Fixes code style issue
1 parent c4069e0 commit 874c9d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Magento2/Sniffs/GraphQL/AbstractGraphQLSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected function seekEndOfDirective(array $tokens, $startPointer)
5656

5757
if ($tokens[$startPointer]['code'] === T_DOC_COMMENT_TAG) {
5858
//advance to next token
59-
$endPointer += 1;
59+
++$endPointer;
6060

6161
//if next token is an opening parenthesis, we consume everything up to the closing parenthesis
6262
if ($tokens[$endPointer + 1]['code'] === T_OPEN_PARENTHESIS) {

0 commit comments

Comments
 (0)