/**
  * Remove the specified resource from storage.
  *
  * @param int $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     $this->checkParametersEmpty();
     $site = Site::findOrFail($id);
     $site->delete();
     return $this->getCodeResponse(Response::HTTP_NO_CONTENT);
 }