Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
53 | public function indexes(string $table, ConnectionInterface $connection = null) |
||
54 | { |
||
55 | $indexes = []; |
||
56 | foreach ($this->driver->rows('SHOW INDEX FROM ' . $this->driver->table($table), $connection) as $row) { |
||
57 | $indexes[$row['Key_name']] = $this->makeTableIndex($row); |
||
58 | } |
||
59 | return $indexes; |
||
60 | } |
||
62 |