PHP function returning reference conflicts with PHPCodeSniffer in custom WordPress plugin

47 Views Asked by At

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.

0

There are 0 best solutions below