/**
  * Display console message
  *
  * @param   string $s the message to display
  *
  * @return  void
  *
  * @codeCoverageIgnore
  */
 public function writeQuestion($s)
 {
     if ($this->display) {
         parent::question($s);
     }
 }
 /**
  * Display console message
  *
  * @param  string  $string
  * @param  null|int|string  $verbosity
  *
  * @return  void
  */
 public function question($string, $verbosity = null)
 {
     if ($this->display) {
         parent::question($string, $verbosity);
     }
 }