| 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) |
|
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritdoc} |
||
| 59 | */ |
||
| 60 | 3 | public function quoteValue($value) |
|
| 64 | |||
| 65 | |||
| 66 | /** |
||
| 67 | * Check extension |
||
| 68 | * @throws Exception\RuntimeException |
||
| 69 | * @return void |
||
| 70 | */ |
||
| 71 | 19 | protected function checkEnvironment() |
|
| 77 | } |
||
| 78 |