1 | <?php |
||
14 | abstract class AbstractProvider |
||
15 | { |
||
16 | /** |
||
17 | * The data set. |
||
18 | * |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $data; |
||
22 | |||
23 | /** |
||
24 | * Return the data set. |
||
25 | * |
||
26 | * @return array |
||
27 | */ |
||
28 | public function getAll() |
||
32 | |||
33 | /** |
||
34 | * Extend the data set. |
||
35 | * |
||
36 | * @param array $data |
||
37 | */ |
||
38 | public function extend($data) |
||
44 | } |
||
45 |