for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PublishingKit\Utilities\Collections;
use Countable;
use IteratorAggregate;
use JsonSerializable;
use Generator;
use Serializable;
use PublishingKit\Utilities\Contracts\Collectable;
class LazyCollection extends BaseCollection implements Countable, IteratorAggregate, JsonSerializable, Serializable
{
}