Created
June 5, 2018 18:53
-
-
Save weierophinney/4425a8542186310673613e7c5ed16226 to your computer and use it in GitHub Desktop.
Example of casting an array of entities to a collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Entity; | |
use ArrayIterator; | |
class UserCollection extends ArrayIterator | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$users = new UserCollection($userRepository->findAll()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note the change from extending
Zend\Paginator\Paginator
to extendingArrayIterator
.If you want to do pagination, you'll need to use something like the https://github.com/doctrine/DoctrineORMModule/blob/master/src/DoctrineORMModule/Paginator/Adapter/DoctrinePaginator.php