for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Vehsamrak\ListCollection;
use Doctrine\Common\Collections\Collection;
/**
* List which contains only collections
*/
class CollectionList extends TypedList
{
public function __construct(array $elements = [])
parent::__construct(Collection::class, $elements);
}