socialPostRepository = $socialPostRepository; $this->story = $story; } /** * @param int $exportId [description] * * @return array|null [description] */ public function delete(SocialPost $socialPost) { $result = $this->socialPostRepository->delete($socialPost); return $result; } }