Skip to content

Commit

Permalink
README improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
bpolaszek committed Jul 19, 2017
1 parent 5f001ba commit 1605233
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -60,7 +60,12 @@ printf('Last page number: %s' . PHP_EOL, $pager->getLastPage());
print PHP_EOL;

foreach ($pager as $page) {
printf('Page %s contains %d items. - Url: %s' . PHP_EOL, $page, count($page), $urlBuilder->buildUrl($pager, $page));
printf(
'Page %s contains %d items. - Url: %s' . PHP_EOL,
$page,
count($page),
$urlBuilder->buildUrl($pager, $page)
);
}
```

Expand Down

0 comments on commit 1605233

Please sign in to comment.