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