Overtrue\Pinyin\FileDictLoader::mapSurname PHP Method

mapSurname() public method

Load surname dict.
public mapSurname ( Closure $callback )
$callback Closure
    public function mapSurname(Closure $callback)
    {
        $surnames = $this->path . '/surnames';
        if (file_exists($surnames)) {
            $dictionary = (array) (include $surnames);
            $callback($dictionary);
        }
    }