Owl\Repositories\Fluent\LikeRepository::getLikeById PHP 메소드

getLikeById() 공개 메소드

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