Skip to content

Commit

Permalink
Removed dump call
Browse files Browse the repository at this point in the history
  • Loading branch information
Kubinyete committed Nov 17, 2023
1 parent 5183144 commit cd3ac7e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Core/PagSeguroEdiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ public function getTransactionalMovements(DateTimeInterface $date, int $pageSize
return new Paginator(function (int $page, int $size, callable $limiter) use ($date) {
$response = $this->getTransactionalMovementsPage($date, $page, $size);
$pagination = Pagination::parse($response->getParsedPath('pagination'));
dump($pagination->jsonSerialize());
$limiter($pagination->getTotalPages());

return array_map(fn ($x) => TransactionalMovement::parse($x), $response->getParsedPath('detalhes'));
}, 1, $pageSize);
}
Expand Down

0 comments on commit cd3ac7e

Please sign in to comment.