for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Daikon\ReadModel\Projection;
use Daikon\DataStructure\TypedMapTrait;
final class ProjectionMap implements \IteratorAggregate, \Countable
{
use TypedMapTrait;
public function __construct(array $projections = [])
$this->init($projections, ProjectionInterface::class);
}