for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Leonidas\Library\System\Model\Page;
use Leonidas\Contracts\System\Schema\EntityCollectionFactoryInterface;
class PageCollectionFactory implements EntityCollectionFactoryInterface
{
public function createEntityCollection(object ...$pages): PageCollection
return new PageCollection(...$pages);
}