Skip to content

Commit 1e8a69c

Browse files
committed
Fix misaligned space
1 parent fc5fd62 commit 1e8a69c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class CamelCapsFunctionNameSniff extends AbstractScopeSniff
2626
'construct' => true,
2727
'destruct' => true,
2828
'call' => true,
29-
'callstatic ' => true,
29+
'callstatic' => true,
3030
'get' => true,
3131
'set' => true,
3232
'isset' => true,

src/Standards/PEAR/Sniffs/NamingConventions/ValidFunctionNameSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ValidFunctionNameSniff extends AbstractScopeSniff
2626
'construct' => true,
2727
'destruct' => true,
2828
'call' => true,
29-
'callstatic ' => true,
29+
'callstatic' => true,
3030
'get' => true,
3131
'set' => true,
3232
'isset' => true,

0 commit comments

Comments
 (0)