1 | <?php |
||
14 | class CodeIgniterDriver implements DriverInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var \Rougin\Describe\Driver\DriverInterface|null |
||
18 | */ |
||
19 | protected $driver = null; |
||
20 | |||
21 | /** |
||
22 | * Gets the specified driver from the specified database connection. |
||
23 | * |
||
24 | * @param array $database |
||
25 | */ |
||
26 | 18 | public function __construct(array $database) |
|
47 | |||
48 | /** |
||
49 | * Returns the result. |
||
50 | * |
||
51 | * @return array |
||
52 | */ |
||
53 | public function getTable($table) |
||
57 | |||
58 | /** |
||
59 | * Shows the list of tables. |
||
60 | * |
||
61 | * @return array |
||
62 | */ |
||
63 | public function showTables() |
||
67 | } |
||
68 |