Skip to content

Instantly share code, notes, and snippets.

@adelarcubs
Created May 17, 2015 02:05
Show Gist options
  • Save adelarcubs/82e9905ef1c6f8f2c346 to your computer and use it in GitHub Desktop.
Save adelarcubs/82e9905ef1c6f8f2c346 to your computer and use it in GitHub Desktop.
<?php
namespace User\V1\Rest\User;
use Zend\Paginator\Paginator;
use Zend\Paginator\Adapter\ArrayAdapter;
class UserCollection extends Paginator {
public function __construct($userCollection) {
parent::__construct(new ArrayAdapter($userCollection));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment