diff --git a/src/XeroPHP/Remote/Response.php b/src/XeroPHP/Remote/Response.php index efe37494..b5570187 100644 --- a/src/XeroPHP/Remote/Response.php +++ b/src/XeroPHP/Remote/Response.php @@ -317,6 +317,9 @@ public function parseXML() /** @var SimpleXMLElement $root_child */ foreach ($sxml as $child_index => $root_child) { switch ($child_index) { + case 'PageInfo': + // TODO: We can potentially handle the page info and make it a value on the response object + break; case 'ErrorNumber': $this->root_error['code'] = (string)$root_child; @@ -361,6 +364,9 @@ public function parseJSON() foreach ($json as $child_index => $root_child) { switch ($child_index) { + case 'PageInfo': + // TODO: We can potentially handle the page info and make it a value on the response object + break; case 'ErrorNumber': $this->root_error['code'] = $root_child;