| 1 | <?php |
||
| 5 | class Db |
||
| 6 | { |
||
| 7 | private static $db; |
||
| 8 | private static $defaultSettings; |
||
| 9 | |||
| 10 | public static function getDriver() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Set the settings used for creating default datastores. |
||
| 27 | * @param array $settings |
||
| 28 | */ |
||
| 29 | public static function setDefaultSettings($settings) |
||
| 33 | |||
| 34 | public static function getDefaultSettings() |
||
| 38 | |||
| 39 | public static function reset() |
||
| 46 | } |
||
| 47 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.