for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Nip\Collections\Collection;
if (! function_exists('collect')) {
/**
* Create a collection from the given value.
*
* @param mixed $value
* @return Collection
*/
function collect($value = null)
{
return new Collection($value);
}