1 | <?php |
||
7 | trait HasDataTrait |
||
8 | { |
||
9 | |||
10 | 2 | protected function ensureData() |
|
16 | |||
17 | /** |
||
18 | * Retrieve an attribute from the label |
||
19 | * |
||
20 | * @param string $key |
||
21 | * |
||
22 | * @return mixed |
||
23 | */ |
||
24 | 2 | public function getData($key = null) |
|
33 | |||
34 | /** |
||
35 | * Set/Unset a label attribute |
||
36 | * |
||
37 | * @param string $keyOrArray |
||
38 | * @param mixed|null $value |
||
39 | * |
||
40 | * @return self |
||
41 | */ |
||
42 | 2 | public function setData($keyOrArray, $value = null) |
|
49 | |||
50 | } |