Pattern: Malformed function spacing
Issue: -
This rule enforces separation between methods in a class or interface.
By default, this rule checks that there are two blank lines before and after functions declarations, but you can change the required padding using the spacing
property.
<!-- Ensure 1 blank line before and after functions. -->
<rule ref="Squiz.WhiteSpace.FunctionSpacing">
<properties>
<property name="spacing" value="1" />
</properties>
</rule>