Exemplo n.º 1
0
 /**
  * Destroy the notification instance
  */
 public final function __destruct()
 {
     if ($this->isCli) {
         return;
     }
     if ($this->hasMessages() && $this->session->get('messages') !== $this->messages) {
         $this->session->set(self::SESSION_KEY, $this->messages);
         $this->session->write();
     }
 }