From 6eae4c982b11e37e38120bbf2d33f1fe4b2cf2de Mon Sep 17 00:00:00 2001 From: Paul Boco Date: Sun, 6 Nov 2011 00:30:40 -0500 Subject: [PATCH] Change attributes from protected to public. --- laravel/paginator.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/laravel/paginator.php b/laravel/paginator.php index 9c039498..1ac36c85 100644 --- a/laravel/paginator.php +++ b/laravel/paginator.php @@ -14,28 +14,28 @@ class Paginator { * * @var int */ - protected $page; + public $page; /** * The last page available for the result set. * * @var int */ - protected $last; + public $last; /** * The total number of results. * * @var int */ - protected $total; + public $total; /** * The number of items per page. * * @var int */ - protected $per_page; + public $per_page; /** * The values that should be appended to the end of the link query strings.