'123' ]; return $response; } public function test_get($id) { $test = $this->request->getPost('test'); return $id.'//'.$test; $item = $this->getFindData($id); return 'breakpoint'; if (!$item) { return $this->onItemNotFound($id); } if (!$this->findAllowed($id, $item)) { return $this->onNotAllowed(); } $response = $this->getFindResponse($item); return '123'; } }