Ubiquity  2.0.3
php rapid development framework
InfoMessage.php
Go to the documentation of this file.
1 <?php
2 
4 
5 class InfoMessage {
6  private $type;
7  private $content;
8 
9  public function __construct($type,$content){
10  $this->type=$type;
11  $this->content=$content;
12  }
13 
14  public function getType() {
15  return $this->type;
16  }
17 
18  public function setType($type) {
19  $this->type=$type;
20  return $this;
21  }
22 
23  public function getContent() {
24  return $this->content;
25  }
26 
27  public function setContent($content) {
28  $this->content=$content;
29  return $this;
30  }
31 }