1 | <?php |
||
10 | class Chart |
||
11 | { |
||
12 | /** |
||
13 | * This option specifies the subtitle. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $subtitle; |
||
18 | |||
19 | /** |
||
20 | * This option specifies the title. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $title; |
||
25 | |||
26 | /** |
||
27 | * @param string $subtitle |
||
28 | * |
||
29 | * @return Chart |
||
30 | */ |
||
31 | public function setSubtitle($subtitle) |
||
37 | |||
38 | /** |
||
39 | * @param string $title |
||
40 | * |
||
41 | * @return Chart |
||
42 | */ |
||
43 | public function setTitle($title) |
||
49 | } |
||
50 |