Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function __construct( |
||
26 | string $boardUuid, |
||
27 | string $shardUuid, |
||
28 | string $profileName, |
||
29 | string $versionName, |
||
30 | string $data |
||
31 | ) |
||
32 | { |
||
33 | $this->boardUuid = new Uuid($boardUuid); |
||
34 | $this->shardUuid = new Uuid($shardUuid); |
||
35 | $this->profile = Profile::createFrom($profileName, $versionName); |
||
36 | $this->data = new Data($data); |
||
37 | } |
||
59 |