1 | <?php |
||
10 | final class Interview implements CreatableFromArray |
||
11 | { |
||
12 | /** |
||
13 | * @var array with keys as profile ids and each profile has a name, statements and questions |
||
14 | */ |
||
15 | private $profiles; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $description; |
||
21 | |||
22 | /** |
||
23 | * @var bool |
||
24 | */ |
||
25 | private $complete; |
||
26 | |||
87 |