1 | <?php |
||
14 | class DataProviderFake implements DataProviderInterface |
||
15 | { |
||
16 | /** |
||
17 | * Fake direct getter. |
||
18 | * @return string |
||
19 | */ |
||
20 | public function bar(): string |
||
24 | |||
25 | /** |
||
26 | * Fake getter method. |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getFoobar() |
||
33 | |||
34 | /** |
||
35 | * Fake getter method with snake case. |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getFoobarBaz() |
||
42 | |||
43 | /** |
||
44 | * Returns an array with template vars (and optional their getters) to fill the kitchensink template. |
||
45 | * @return array |
||
46 | */ |
||
47 | public function getTemplateVars(): array |
||
55 | } |
||
56 |