Open
Description
Repost from squizlabs/PHP_CodeSniffer#2997:
Given the following code run against the PSR12 standard:
<?php /* * Not a file docblock. */ /** * Docblock for an include statement. */ include 'foo.php';I get the following error:
-------------------------------------------------------------------------------------- FOUND 1 ERROR AFFECTING 1 LINE -------------------------------------------------------------------------------------- 9 | ERROR | [x] Header blocks must be separated by a single blank line | | (PSR12.Files.FileHeader.SpacingAfterBlock)
... while I expected none.
See the original thread for additional information.