Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | 14 | protected function afterOperations($data) |
|
22 | { |
||
23 | 14 | if ($data instanceof EloquentBuilder) { |
|
24 | 14 | return $data->get(); |
|
25 | 1 | } elseif ($data instanceof Builder) { |
|
26 | 1 | return new ArrayIterator($data->get()); |
|
27 | } |
||
28 | throw new RuntimeException('Unsupported type of data source.'); |
||
29 | } |
||
30 | |||
50 |