1 | <?php |
||
17 | class TextFrame extends Frame |
||
18 | { |
||
19 | /** |
||
20 | * @var string[] |
||
21 | */ |
||
22 | protected $texts; |
||
23 | |||
24 | /** |
||
25 | * Get texts. |
||
26 | * |
||
27 | * @return string[] |
||
28 | */ |
||
29 | public function getTexts() |
||
33 | |||
34 | /** |
||
35 | * Set texts. |
||
36 | * |
||
37 | * @param string[] $texts |
||
38 | * |
||
39 | * @return $this |
||
40 | */ |
||
41 | public function setTexts(array $texts) |
||
47 | } |
||
48 |