PHPのバージョン上げたらWarning: count(): Parameter must be an array or an object that implements Countable対策

前のバージョンではcount(NULL)に対して0を返していたが、PHP7.2からwarningを出している

なので

if (is_array($hoge)) {
    count($hoge);
}

と回避しないとアカン