Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function __construct( |
||
36 | string $boardUuid, |
||
37 | string $shardUuid, |
||
38 | string $profileName, |
||
39 | string $versionName, |
||
40 | string $data |
||
41 | ) |
||
42 | { |
||
43 | $this->boardUuid = new Uuid($boardUuid); |
||
44 | $this->shardUuid = new ShardUuid($shardUuid); |
||
45 | $this->profile = Profile::createFrom($profileName, $versionName); |
||
46 | $this->data = new Data($data); |
||
47 | } |
||
69 |