Habari\Tags::get_by_text PHP Метод

get_by_text() публичный статический Метод

Return a tag based on a tag's text
public static get_by_text ( string $tag ) : Tag
$tag string The tag's text (not slug)
Результат Tag A Tag object
    public static function get_by_text($tag)
    {
        return self::get_one($tag);
    }