1 | <?php |
||
7 | class PdoItemCodes extends ItemCodes |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | public $table_name; |
||
14 | |||
15 | /** |
||
16 | * @var \PDO |
||
17 | */ |
||
18 | public $pdo; |
||
19 | |||
20 | /** |
||
21 | * @var LoggerInterface |
||
22 | */ |
||
23 | public $logger; |
||
24 | |||
25 | /** |
||
26 | * @param \PDO $pdo PDO instance |
||
27 | * @param string $table_name The table to work on |
||
28 | */ |
||
29 | 12 | public function __construct( \PDO $pdo, $table_name, ItemCodeInterface $itemcode = null, LoggerInterface $logger = null ) |
|
53 | } |
||
54 |