| 1 | <?php |
||
| 19 | class Content |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var int |
||
| 23 | */ |
||
| 24 | private $id; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $type; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var |
||
| 33 | */ |
||
| 34 | private $status; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | private $title; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return int |
||
| 43 | */ |
||
| 44 | public function getId() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param int $id |
||
| 51 | * |
||
| 52 | * @return Content |
||
| 53 | */ |
||
| 54 | public function setId($id) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return string |
||
| 62 | */ |
||
| 63 | public function getType() |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @param string $type |
||
| 70 | * |
||
| 71 | * @return Content |
||
| 72 | */ |
||
| 73 | public function setType($type) |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @return mixed |
||
| 81 | */ |
||
| 82 | public function getStatus() |
||
| 86 | |||
| 87 | /** |
||
| 88 | * @param mixed $status |
||
| 89 | * |
||
| 90 | * @return Content |
||
| 91 | */ |
||
| 92 | public function setStatus($status) |
||
| 97 | |||
| 98 | /** |
||
| 99 | * @return string |
||
| 100 | */ |
||
| 101 | public function getTitle() |
||
| 105 | |||
| 106 | /** |
||
| 107 | * @param string $title |
||
| 108 | * |
||
| 109 | * @return Content |
||
| 110 | */ |
||
| 111 | public function setTitle($title) |
||
| 116 | } |
||
| 117 |