Owl\Repositories\Fluent\LikeRepository::getLikeById PHP Method

getLikeById() public method

Get a like by id.
public getLikeById ( $id ) : stdClass
$id int
return stdClass
    public function getLikeById($id)
    {
        return \DB::table($this->getTableName())->where($this->getTableName() . '.id', $id)->first();
    }