Owl\Repositories\Eloquent\TagRepository::getById PHP Méthode

getById() public méthode

get a tag by tag id.
public getById ( integer $id ) : Collection
$id integer
Résultat Collection
    public function getById($id)
    {
        return $this->tag->where('id', $id)->first();
    }