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