| 1 | <?php |
||
| 13 | class Database { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var TableCollection Database tables |
||
| 17 | */ |
||
| 18 | private $tables; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param TableCollection $tables Database tabels |
||
| 22 | */ |
||
| 23 | public function __construct(TableCollection $tables) { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get database tables |
||
| 29 | * |
||
| 30 | * @return TableCollection Database tables |
||
| 31 | */ |
||
| 32 | 1 | public function getTables() { |
|
| 35 | |||
| 36 | /** |
||
| 37 | * Get result for database |
||
| 38 | * |
||
| 39 | * @return array Result |
||
| 40 | */ |
||
| 41 | public function getResult() { |
||
| 59 | } |
||
| 60 |