Skip to content

Commit

Permalink
Wording
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Mar 30, 2020
1 parent 7c406b7 commit 1dc58c1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public function processSingleLineCall(File $phpcsFile, $stackPtr, $openBracket,
}

if ($spaceAfterOpen !== $requiredSpacesAfterOpen) {
$error = 'Expected %s spaces after opening bracket; %s found';
$error = 'Expected %s spaces after opening parenthesis; %s found';
$data = [
$requiredSpacesAfterOpen,
$spaceAfterOpen,
Expand Down Expand Up @@ -266,7 +266,7 @@ public function processSingleLineCall(File $phpcsFile, $stackPtr, $openBracket,
}

if ($spaceBeforeClose !== $requiredSpacesBeforeClose) {
$error = 'Expected %s spaces before closing bracket; %s found';
$error = 'Expected %s spaces before closing parenthesis; %s found';
$data = [
$requiredSpacesBeforeClose,
$spaceBeforeClose,
Expand Down

0 comments on commit 1dc58c1

Please sign in to comment.