Skip to content

Commit

Permalink
MC-19366: Fixes code style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-bernard-valentaten committed Sep 17, 2019
1 parent c4069e0 commit 874c9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Magento2/Sniffs/GraphQL/AbstractGraphQLSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected function seekEndOfDirective(array $tokens, $startPointer)

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

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

0 comments on commit 874c9d7

Please sign in to comment.