1 | <?php |
||
7 | abstract class ImportDbUnit extends ImportFileUnit implements ImportDbUnitInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $tableName; |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $tmpTable; |
||
17 | /** |
||
18 | * @var string|string[] |
||
19 | */ |
||
20 | protected $primaryKey; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | 15 | public function getTmpTable() |
|
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | 12 | public function setTmpTable($tmpTable) |
|
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | 11 | public function setTable($tableName) |
|
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | 10 | public function getTable() |
|
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | 2 | public function getPk() |
|
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | 3 | public function setPk($definition) |
|
69 | } |
||
70 |