Microweber\Providers\URLify::add_chars PHP Method

add_chars() public static method

$map should be a hash.
public static add_chars ( $map )
    public static function add_chars($map)
    {
        if (!is_array($map)) {
            throw new LogicException('$map must be an associative array.');
        }
        self::$maps[] = $map;
        self::$map = array();
        self::$chars = '';
    }