BMDMSoundex icon indicating copy to clipboard operation
BMDMSoundex copied to clipboard

Php warning on BeiderMorse.php line 321

Open ecow opened this issue 5 years ago • 0 comments

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++ ) {

ecow avatar Feb 05 '20 08:02 ecow