1 | <?php |
||
8 | abstract class AbstractPdoCollector extends AbstractCollector |
||
9 | { |
||
10 | protected $pdo; |
||
11 | |||
12 | private $tableName; |
||
13 | |||
14 | public function setPdo(\PDO $pdo) |
||
15 | { |
||
16 | $this->pdo = $pdo; |
||
17 | return $this; |
||
18 | } |
||
19 | |||
20 | public function setTableName($name) |
||
21 | { |
||
22 | $this->tableName = $name; |
||
23 | return $this; |
||
24 | } |
||
25 | |||
26 | public function getTableName() |
||
30 | } |