Commit 6eae4c98 authored by Paul Boco's avatar Paul Boco

Change attributes from protected to public.

parent 97a3f33c
...@@ -14,28 +14,28 @@ class Paginator { ...@@ -14,28 +14,28 @@ class Paginator {
* *
* @var int * @var int
*/ */
protected $page; public $page;
/** /**
* The last page available for the result set. * The last page available for the result set.
* *
* @var int * @var int
*/ */
protected $last; public $last;
/** /**
* The total number of results. * The total number of results.
* *
* @var int * @var int
*/ */
protected $total; public $total;
/** /**
* The number of items per page. * The number of items per page.
* *
* @var int * @var int
*/ */
protected $per_page; public $per_page;
/** /**
* The values that should be appended to the end of the link query strings. * The values that should be appended to the end of the link query strings.
......
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