Eusonlito\LaravelMeta\Tags\TagAbstract::tag PHP Method

tag() public static method

public static tag ( $key, $value )
    public static function tag($key, $value)
    {
        if (in_array($key, static::$custom, true)) {
            $method = 'tag' . self::studly($key);
        } else {
            $method = 'tagDefault';
        }
        return static::$method($key, $value);
    }
TagAbstract