## Expected Behavior <!--- Tell us what should happen. --> Maybe it would be a good idea in cases like this: ```php <?php return ob_get_clean(); ``` to not throw `AddEmptyLineBeforeReturnStatement` warning and allow it? ## Current Behavior <!--- Tell us what happens instead of the expected behavior. --> When I have this code: ```php <?php return ob_get_clean(); ``` wpforms-phpcs screams at me with `WPForms.Formatting.EmptyLineBeforeReturn.AddEmptyLineBeforeReturnStatement`. The obvious fix in this case right now is having this: ```php <?php return ob_get_clean(); ``` But to my eye, that looks worse and actually hurts readability. ## Possible Solution <!--- Not required, but suggest a fix/reason for the bug. --> When parsing tags check whether the previous line has a PHP opening tag, and if not - allow it being there instead of the empty line.