Owl\Repositories\Fluent\TagRepository::getById PHP Method

getById() public method

get a tag by tag id.
public getById ( integer $id ) : void
$id integer
return void
    public function getById($id)
    {
        return \DB::table($this->getTableName())->where($this->getTableName() . '.id', $id)->first();
    }