We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d573b6 commit 29c960dCopy full SHA for 29c960d
Joomla/Sniffs/NamingConventions/ValidFunctionNameSniff.php
@@ -24,7 +24,7 @@ class Joomla_Sniffs_NamingConventions_ValidFunctionNameSniff extends PEAR_Sniffs
24
*
25
* @var array
26
*/
27
- protected $magicMethods = [
+ protected $magicMethods = array(
28
'construct' => true,
29
'destruct' => true,
30
'call' => true,
@@ -42,7 +42,7 @@ class Joomla_Sniffs_NamingConventions_ValidFunctionNameSniff extends PEAR_Sniffs
42
'set_state' => true,
43
'clone' => true,
44
'debuginfo' => true,
45
- ];
+ );
46
47
/**
48
* Processes the tokens within the scope.
0 commit comments