Skip to content

Commit

Permalink
Improve the Pagination Service
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyCyborg committed Jul 23, 2018
1 parent f5b67c6 commit 9ce7a39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Application extends Container implements ResponsePreparerInterface
*
* @var string
*/
const VERSION = '4.0.80';
const VERSION = '4.0.81';

/**
* Indicates if the application has "booted".
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Closure;


abstract class AbstractPaginator implements HtmlableInterface
abstract class BasePaginator implements HtmlableInterface
{
/**
* All of the items being paginated.
Expand Down
2 changes: 1 addition & 1 deletion src/Pagination/Paginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use JsonSerializable;


class Paginator extends AbstractPaginator implements ArrayableInterface, ArrayAccess, Countable, IteratorAggregate, JsonSerializable, JsonableInterface
class Paginator extends BasePaginator implements ArrayableInterface, ArrayAccess, Countable, IteratorAggregate, JsonSerializable, JsonableInterface
{
/**
* The total number of items before slicing.
Expand Down
2 changes: 1 addition & 1 deletion src/Pagination/SimplePaginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use JsonSerializable;


class SimplePaginator extends AbstractPaginator implements ArrayableInterface, ArrayAccess, Countable, IteratorAggregate, JsonSerializable, JsonableInterface
class SimplePaginator extends BasePaginator implements ArrayableInterface, ArrayAccess, Countable, IteratorAggregate, JsonSerializable, JsonableInterface
{
/**
* Determine if there are more items in the data source.
Expand Down

0 comments on commit 9ce7a39

Please sign in to comment.