Owl\Repositories\Eloquent\TagRepository::getById PHP Метод

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

get a tag by tag id.
public getById ( integer $id ) : Collection
$id integer
Результат Collection
    public function getById($id)
    {
        return $this->tag->where('id', $id)->first();
    }