Beispiel #1
0
 /**
  * Checks if reporter has a message, shows it and returns true. Returns
  * false if there is nothing to show 
  * 
  * @return boolean
  */
 protected function justShowAMessage()
 {
     if ($this->_reporter->hasMessage()) {
         $this->put($this->_reporter->getMessage());
         return true;
     }
     return false;
 }