service = $service; $this->userId = $userId; } /** * @NoAdminRequired */ public function index(): DataResponse { return new DataResponse($this->service->findAll($this->userId)); } /** * @NoAdminRequired */ public function show(int $id): DataResponse { return $this->handleNotFound(function () use ($id) { return $this->service->find($id, $this->userId); }); } /** * @NoAdminRequired */ public function create(string $stationuuid, string $name, string $favicon, string $urlresolved): DataResponse { return new DataResponse($this->service->create($stationuuid, $name, $favicon, $urlresolved, $this->userId)); } /** * @NoAdminRequired */ public function update(int $id, string $stationuuid, string $name, string $favicon, string $urlresolved): DataResponse { return $this->handleNotFound(function () use ($id, $stationuuid, $name, $favicon, $urlresolved) { return $this->service->update($id, $stationuuid, $name, $favicon, $urlresolved, $this->userId); }); } /** * @NoAdminRequired */ public function destroy(int $id): DataResponse { return $this->handleNotFound(function () use ($id) { return $this->service->delete($id, $this->userId); }); } }