1 | <?php |
||
9 | abstract class GenericPdo implements AdapterInterface |
||
10 | { |
||
11 | /** |
||
12 | * |
||
13 | * @var \PDO |
||
14 | */ |
||
15 | protected $resource; |
||
16 | |||
17 | |||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | 9 | public function query($query) |
|
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | 3 | public function quoteValue($value) |
|
63 | |||
64 | |||
65 | /** |
||
66 | * Check extension |
||
67 | * @throws Exception\RuntimeException |
||
68 | * @return void |
||
69 | */ |
||
70 | 19 | protected function checkEnvironment() |
|
76 | } |
||
77 |