| 1 | <?php |
||
| 7 | abstract class Driver |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Get the driver configurations. |
||
| 11 | * |
||
| 12 | * @param string $name |
||
| 13 | * |
||
| 14 | * @return mixed |
||
| 15 | */ |
||
| 16 | protected function config($name = null) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the driver configuration path. |
||
| 27 | * |
||
| 28 | * @return string|null |
||
| 29 | */ |
||
| 30 | private function getConfigPath() |
||
| 42 | } |
||
| 43 |