I tried the following code in my custom WordPress plugin:
function &test() {
$a = 1;
return $a;
}
This results in a codesniffer error:
------------------------------------------------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
------------------------------------------------------------------------------------------------------------
5 | ERROR | [x] No space after opening parenthesis is prohibited
| | (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterOpenParenthesis)
------------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
------------------------------------------------------------------------------------------------------------
How to fix? Show me working code, please.