| 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 | 6 | public function query($query) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | 2 | public function quoteValue($value) |
|
| 48 | |||
| 49 | |||
| 50 | /** |
||
| 51 | * Check extension |
||
| 52 | * @throws Exception\RuntimeException |
||
| 53 | * @return void |
||
| 54 | */ |
||
| 55 | 12 | protected function checkEnvironment() |
|
| 61 | |||
| 62 | |||
| 63 | } |
||
| 64 |