/**
  * Set the ajax flag to indicate whether
  * we are servicing an ajax request
  *
  * @param bool $isAjax Whether we are servicing an ajax request
  *
  * @return void
  */
 public function setAjax($isAjax)
 {
     $this->_isAjax = $isAjax == true;
     $this->_console->setAjax($isAjax);
 }
 /**
  * Set the ajax flag to indicate whether
  * we are servicing an ajax request
  *
  * @param bool $isAjax Whether we are servicing an ajax request
  *
  * @return void
  */
 public function setAjax($isAjax)
 {
     $this->_isAjax = !!$isAjax;
     $this->_console->setAjax($isAjax);
 }