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 13, 2019
1 parent 571b642 commit c574003
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Magento2/Sniffs/GraphQL/ValidArgumentNameSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c574003

Please sign in to comment.