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