You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
If there is a code that violates both PEAR.Functions.FunctionDeclaration and Squiz.WhiteSpace.ScopeClosingBrace sniffs, the fixer (CBF) will break the file because of deleting the extra brace.
Code sample
<?phpclass Test
{
publicfunction__construct(
protectedint$id
)
{}
}