for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Avoran\Rapido\ReadModel;
use Avoran\Rapido\ReadModel\DataType\FieldDataType;
final class ReadModelId
{
private $dataType;
public function getDataType() { return $this->dataType; }
public function __construct(FieldDataType $dataType)
$this->dataType = $dataType;
}