function __construct($type = null, $options = null)
 {
     parent::__construct($type, $options);
 }
 /**
  * Construct
  * @param mixed
  * @param array
  */
 function __construct($the_question = null, $options = null)
 {
     parent::__construct($the_question, $options);
 }
 /**
  * Constructor
  *
  * @param null $the_question
  * @param null $args
  */
 function __construct($the_question = null, $args = null)
 {
     parent::__construct($the_question, $args);
     add_filter('learn_press_question_answers', array($this, 'limit_answers'), 10, 2);
 }