Owl\Repositories\Fluent\TagRepository::getById PHP 메소드

getById() 공개 메소드

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