/** * Automatically generated run method * * @param Request $request * @return Response */ public function run(Request $request) { $id = $this->getParam('id'); $domain = new EventDomain($this->getServiceContainer()); $payload = $domain->read($id); return $this->responder->run($request, $payload); }
/** * Automatically generated run method * * @param Request $request * @return Response */ public function run(Request $request) { $params = new Parameters($request->query->all()); $domain = new EventDomain($this->getServiceContainer()); $payload = $domain->paginate($params); return $this->responder->run($request, $payload); }
/** * 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']; $domain = new EventDomain($this->getServiceContainer()); $payload = $domain->create($data); return $this->responder->run($request, $payload); }
/** * 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 EventDomain($this->getServiceContainer()); $payload = $domain->setPerformanceExecutionStatisticId($id, $data); return $this->responder->run($request, $payload); }