/** * Automatically generated run method * * @param Request $request * @return Response */ public function run(Request $request) { $body = Json::decode($request->getContent()); if (!isset($body['data'])) { throw new InvalidParameterException(); } $data = $body['data']; $id = $this->getParam('id'); $domain = new VideoDomain($this->getServiceContainer()); $payload = $domain->removeSkill($id, $data); return $this->responder->run($request, $payload); }