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