diff --git a/classes/Parser.php b/classes/Parser.php index 9bd4913..a74242f 100644 --- a/classes/Parser.php +++ b/classes/Parser.php @@ -64,9 +64,8 @@ class Parser { } $items = array(); - $xmlItems = $xml->items; + $xmlItems = $xml->items->item; foreach($xmlItems as $xmlItem) { - $xmlItem = $xmlItem->item; $items[] = array( 'productId' => (string)$xmlItem['id'], 'productName' => (string)$xmlItem->name, @@ -101,4 +100,4 @@ class Parser { 'patronymic' => $patronymic ); } -} \ No newline at end of file +}