| 1 | <?php |
||
| 5 | class Title |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $text; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | protected $highlight; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return mixed |
||
| 19 | */ |
||
| 20 | 3 | public function getHighlight() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param mixed $highlight |
||
| 27 | * |
||
| 28 | * @return $this |
||
| 29 | */ |
||
| 30 | 3 | public function setHighlight($highlight) |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 3 | public function getText() |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @param string $text |
||
| 47 | * |
||
| 48 | * @return $this |
||
| 49 | */ |
||
| 50 | 3 | public function setText($text) |
|
| 56 | |||
| 57 | /** |
||
| 58 | * Returns an array representation of this object. |
||
| 59 | * |
||
| 60 | * @return array |
||
| 61 | */ |
||
| 62 | 3 | public function toArray() |
|
| 70 | } |
||
| 71 |