Add parser for Filters and Paginations Options
To make it faster to use as "Bridge" for front-end implement a way to take a Symfony http
request or ParametersBag
and extract Filter and PaginationsOptions from it to create right object to launch an AntarClient request
$pagination = new PaginationOptions();
$pagination->setPage($request->query->get("page", 0));
$pagination->setPerPage($request->query->get("per_page", 10));
$pagination->setSort($request->query->get("sort", "created_at"));
$pagination->setSortDirection($request->query->get("sort_direction", "desc"));
[...]
and for Filter
$filters = new Filter();
$filters->setUid($request->query->get("uid", ""));
[...]