Skip to content

Commit

Permalink
Fix limit 200: bug (#5)
Browse files Browse the repository at this point in the history
Fix limit 200: bug
  • Loading branch information
RomulusED69 authored Dec 17, 2019
2 parents 6c0be44 + e496560 commit ce4c34e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/OrderService.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function getOrders(OrderListMessage $message): array
}

/** @var Order[] $models */
$models = $this->getModelFactory()->createMany(Order::class, $response['data']);
$models = $this->getModelFactory()->createMany(Order::class, $data);

return $models;
}
Expand Down

0 comments on commit ce4c34e

Please sign in to comment.