Skip to content

Commit a152ec8

Browse files
committed
Fix join to implode
1 parent f5dac66 commit a152ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PSR2R/Sniffs/PHP/RemoveFunctionAliasSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class RemoveFunctionAliasSniff implements \PHP_CodeSniffer_Sniff {
2323
'is_real' => 'is_float',
2424
'is_double' => 'is_float',
2525
'is_writeable' => 'is_writable',
26-
'join' => 'explode',
26+
'join' => 'implode',
2727
'key_exists' => 'array_key_exists', // Deprecated function
2828
'sizeof' => 'count',
2929
'strchr' => 'strstr',

0 commit comments

Comments
 (0)