Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
24 | 2 | public function restructure($configurationData, $options) |
|
25 | { |
||
26 | 2 | $data = [$this->getArrayCopy()]; |
|
27 | 2 | $tableTransformer = $this->createTableTransformation($data, $configurationData, $options); |
|
28 | 2 | $tableTransformer->setLayout(TableTransformation::LIST_LAYOUT); |
|
29 | 2 | return $tableTransformer; |
|
30 | } |
||
31 | |||
37 |