| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | 9 | public function prepareData(array &$data) |
|
| 24 | { |
||
| 25 | 9 | $data['camel'] = []; |
|
| 26 | 9 | $data['columns'] = []; |
|
| 27 | 9 | $data['indexes'] = []; |
|
| 28 | 9 | $data['primaryKeys'] = []; |
|
| 29 | 9 | $data['underscore'] = []; |
|
| 30 | 9 | $data['columns'] = $this->describe->getTable($data['name']); |
|
| 31 | 9 | $data['primaryKey'] = $this->describe->getPrimaryKey($data['name']); |
|
| 32 | 9 | } |
|
| 77 |