for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Maxim Sokolovsky
*/
namespace WS\Utils\Collections;
trait CollectionConstructorTrait
{
private static function toCollection(...$elements): Collection
return new ArrayList($elements);
}