for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ballen\Collection;
/**
* Collection
*
* A Collection class (library) which provides OOP replacement for the
* traditional array data structure.
* @author Bobby Allen <[email protected]>
* @license https://opensource.org/licenses/MIT
* @link https://github.com/allebb/collection
* @link http://bobbyallen.me
*/
class CollectionExport
{
* Array of collection items.
* @var array
private $collection;
* Initiate the CollectionExport object.
* @param array $collection The collection array.
public function __construct(array $collection)
$this->collection = $collection;
}
* The total number of items in the collection.
* @return integer
public function count()
return count($this->collection);
* Return the contents of the collection as an array.
* @return array
public function toArray()
return $this->collection;
* Return the contents of the collection as an stdClass object.
* @return object
public function toObject()
return (object)$this->toArray();
* Return the contents of the collection as a JSON encoded string.
* @return string
public function toJson()
return json_encode($this->collection);
* Default return value on the object, will return the collection as JSON representation.
public function __toString()
return $this->toJson();