Fixes #9. Add space before next meaningful line of code and skip comments

This commit is contained in:
ErickSkrauch
2023-03-22 20:41:04 +01:00
parent 22dcb418fb
commit 6e9d815a1f
3 changed files with 11 additions and 2 deletions

View File

@ -575,6 +575,14 @@ class Foo
}
}',
];
yield [
'<?php
do {
$a = 123;
} while ($value > 10); // comment here
',
];
}
protected function createFixer(): AbstractFixer {