From c57400364834333181731376a51bfe9951ee73cc Mon Sep 17 00:00:00 2001 From: Jean-Bernard Valentaten Date: Fri, 13 Sep 2019 14:19:44 +0200 Subject: [PATCH] MC-19366: Fixes code style issue --- Magento2/Sniffs/GraphQL/ValidArgumentNameSniff.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;