Exemple #1
0
 protected function notice($msg, $params = null, $fullString = false)
 {
     if (!$fullString) {
         $msg = $this->messages->get($msg, $params);
     }
     $this->reporter->message($msg, 'notice');
 }
 protected function notice($msg, $msgparams = array())
 {
     if ($this->reporter) {
         $this->reporter->message($this->messages->get($msg, $msgparams), 'notice');
     }
     $this->nbNotice++;
 }
Exemple #3
0
 protected function notice($msg)
 {
     $this->reporter->message($msg, 'notice');
 }