Commit 49cd851f authored by Taylor Otwell's avatar Taylor Otwell

tweaked method signature to paginator links method.

parent d0b160c3
...@@ -80,11 +80,11 @@ class Paginator { ...@@ -80,11 +80,11 @@ class Paginator {
/** /**
* Create the HTML pagination links. * Create the HTML pagination links.
* *
* @param string $language
* @param int $adjacent * @param int $adjacent
* @param string $language
* @return string * @return string
*/ */
public function links($language = null, $adjacent = 3) public function links($adjacent = 3, $language = null)
{ {
if ($this->last_page() > 1) if ($this->last_page() > 1)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment