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