BMDMSoundex
BMDMSoundex copied to clipboard
Php warning on BeiderMorse.php line 321
hi,
running the examples the following warning is returned:
PHP Warning: count(): Parameter must be an array or an object that implements Countable in /workspace/vendor/dautkom/bmdm/library/BeiderMorse.php on line 321
This could be an error in the code:
for( $j = 0; $j < count($clist); $j++ ) {
should be:
for( $j = 0; $j < $clist; $j++ ) {