Owl\Repositories\Fluent\TagFtsRepository::getById PHP Метод

getById() публичный Метод

get a tagFts by tag_id.
public getById ( $tag_id ) : void
Результат void
    public function getById($tag_id)
    {
        return \DB::table($this->getTableName())->where($this->getTableName() . '.tag_id', $tag_id)->first();
    }