// Test handling of comments and inline annotations. for ( /*phpcs:enable*/ $i = 0 /*start*/ ; /*end*/$i < 10/*comment*/; $i++ /*comment*/ ) {}
// Test multi-line FOR control structure. for ( $i = 0; $i < 10; $i++
) {}
// Test multi-line FOR control structure with comments and annotations. for ( $i = 0; /* Start */ $i < 10; /* phpcs:ignore Standard.Category.SniffName -- for reasons. */ $i++ // comment
) {}
// Test fixing each error in one go. Note: lines 78 + 82 contain trailing whitespace on purpose. for (