1 | <?php |
||
19 | trait InsertValuesComponentTrait |
||
20 | { |
||
21 | /** |
||
22 | * @return ReferenceManager |
||
23 | */ |
||
24 | abstract public function getReferenceManager(); |
||
25 | |||
26 | /** |
||
27 | * @var array |
||
28 | */ |
||
29 | private $values; |
||
30 | |||
31 | /** |
||
32 | * @param array $values |
||
33 | * |
||
34 | * @return $this |
||
35 | */ |
||
36 | 1 | public function addValues(array $values) |
|
48 | |||
49 | /** |
||
50 | * @return array |
||
51 | */ |
||
52 | 1 | public function getValues() |
|
56 | } |