Skip to content

Commit

Permalink
Merge branch 'feature/squiz-blockcomment-check-short-echo-tag' of htt…
Browse files Browse the repository at this point in the history
  • Loading branch information
gsherwood committed May 27, 2021
2 parents 52f440f + 93306f5 commit 900d377
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ public function process(File $phpcsFile, $stackPtr)
if ((isset($tokens[$contentBefore]['scope_closer']) === true
&& $tokens[$contentBefore]['scope_opener'] === $contentBefore)
|| $tokens[$contentBefore]['code'] === T_OPEN_TAG
|| $tokens[$contentBefore]['code'] === T_OPEN_TAG_WITH_ECHO
) {
if (($tokens[$stackPtr]['line'] - $tokens[$contentBefore]['line']) !== 1) {
$error = 'Empty line not required before block comment';
Expand Down
16 changes: 16 additions & 0 deletions src/Standards/Squiz/Tests/Commenting/BlockCommentUnitTest.inc
Original file line number Diff line number Diff line change
Expand Up @@ -256,3 +256,19 @@ $y = 10 + /* test */ -2;
/*
* No blank line allowed above the comment if it's the first non-empty token after a PHP open tag.
*/

?>
<?=
/*
* No blank line required above the comment if it's the first non-empty token after a PHP open tag.
*/

$contentToEcho
?>
<?=


/*
* No blank line allowed above the comment if it's the first non-empty token after a PHP open tag.
*/
$contentToEcho
Original file line number Diff line number Diff line change
Expand Up @@ -258,3 +258,19 @@ $y = 10 + /* test */ -2;
/*
* No blank line allowed above the comment if it's the first non-empty token after a PHP open tag.
*/

?>
<?=
/*
* No blank line required above the comment if it's the first non-empty token after a PHP open tag.
*/

$contentToEcho
?>
<?=


/*
* No blank line allowed above the comment if it's the first non-empty token after a PHP open tag.
*/
$contentToEcho
2 changes: 2 additions & 0 deletions src/Standards/Squiz/Tests/Commenting/BlockCommentUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ public function getErrorList()
232 => 1,
233 => 1,
256 => 1,
271 => 1,
273 => 1,
];

return $errors;
Expand Down

0 comments on commit 900d377

Please sign in to comment.