Skip to content

Commit 10e6c81

Browse files
author
f.schmitt
committed
fix superGlobals
1 parent 4e889a5 commit 10e6c81

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

custom-standards/Flyeralarm/Sniffs/Variable/LowerCamelCaseSniff.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ class LowerCamelCaseSniff implements Sniff
1212
* @var array
1313
*/
1414
protected $superGlobals = [
15-
'$GLOBALS',
16-
'$_SERVER',
17-
'$_GET',
18-
'$_POST',
19-
'$_FILES',
20-
'$_COOKIE',
21-
'$_SESSION',
22-
'$_REQUEST',
23-
'$_ENV',
15+
'GLOBALS',
16+
'_SERVER',
17+
'_GET',
18+
'_POST',
19+
'_FILES',
20+
'_COOKIE',
21+
'_SESSION',
22+
'_REQUEST',
23+
'_ENV',
2424
];
2525

2626
/**

0 commit comments

Comments
 (0)