| 1 | <?php |
||
| 4 | class Configuration |
||
| 5 | { |
||
| 6 | /** @var array */ |
||
| 7 | protected $config; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @param array $config |
||
| 11 | */ |
||
| 12 | public function __construct(array $config = []) |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function getPath() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getTable() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getConnection() |
||
| 40 | } |
||
| 41 |