| 1 | <?php |
||
| 9 | class Question |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Question Identifier (One or Two) |
||
| 13 | * |
||
| 14 | * @var int |
||
| 15 | */ |
||
| 16 | public $questionId = 1; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Question Key (Translate Text) |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | public $questionKey = ''; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Store a Question |
||
| 27 | * |
||
| 28 | * @param int $questionId |
||
| 29 | * @param string $questionKey |
||
| 30 | */ |
||
| 31 | public function __construct(int $questionId, string $questionKey) |
||
| 36 | } |
||
| 37 |