diff --git a/Magento2/Sniffs/GraphQL/ValidArgumentNameSniff.php b/Magento2/Sniffs/GraphQL/ValidArgumentNameSniff.php index 39cf76df..337bf9ff 100644 --- a/Magento2/Sniffs/GraphQL/ValidArgumentNameSniff.php +++ b/Magento2/Sniffs/GraphQL/ValidArgumentNameSniff.php @@ -31,7 +31,8 @@ public function process(File $phpcsFile, $stackPtr) { $tokens = $phpcsFile->getTokens(); - //get the pointer to the argument list opener or bail out if none was found since then the field does not have arguments + //get the pointer to the argument list opener or bail out if none was found + //since then the field does not have arguments $openArgumentListPointer = $this->getArgumentListOpenPointer($stackPtr, $tokens); if ($openArgumentListPointer === false) { return;