mirror of
https://github.com/getgrav/grav.git
synced 2025-02-20 19:56:53 +01:00
64 lines
1.3 KiB
PHP
64 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* @package Grav\Framework\Collection
|
|
*
|
|
* @copyright Copyright (C) 2015 - 2018 Trilby Media, LLC. All rights reserved.
|
|
* @license MIT License; see LICENSE file for details.
|
|
*/
|
|
|
|
namespace Grav\Framework\Collection;
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection as BaseArrayCollection;
|
|
|
|
/**
|
|
* General JSON serializable collection.
|
|
*
|
|
* @package Grav\Framework\Collection
|
|
*/
|
|
class ArrayCollection extends BaseArrayCollection implements CollectionInterface
|
|
{
|
|
/**
|
|
* Reverse the order of the items.
|
|
*
|
|
* @return static
|
|
*/
|
|
public function reverse()
|
|
{
|
|
return $this->createFrom(array_reverse($this->toArray()));
|
|
}
|
|
|
|
/**
|
|
* Shuffle items.
|
|
*
|
|
* @return static
|
|
*/
|
|
public function shuffle()
|
|
{
|
|
$keys = $this->getKeys();
|
|
shuffle($keys);
|
|
|
|
return $this->createFrom(array_replace(array_flip($keys), $this->toArray()));
|
|
}
|
|
|
|
/**
|
|
* Split collection into chunks.
|
|
*
|
|
* @param int $size Size of each chunk.
|
|
* @return array
|
|
*/
|
|
public function chunk($size)
|
|
{
|
|
return array_chunk($this->toArray(), $size, true);
|
|
}
|
|
|
|
/**
|
|
* Implementes JsonSerializable interface.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function jsonSerialize()
|
|
{
|
|
return $this->toArray();
|
|
}
|
|
}
|