Learner\Repositories\Eloquent\VideoRepository::delete PHP Method

delete() public method

Delete video.
public delete ( integer $id ) : boolean | null
$id integer
return boolean | null
    public function delete($id)
    {
        return $this->findById($id)->delete();
    }