'123' ]; return $response; } public function test_get($id) { $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'; } }