| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | abstract class SingleExporterBase extends ExporterBase implements SingleExporter |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Finish the export query -> get the result |
||
| 20 | * |
||
| 21 | * @return array The query result |
||
| 22 | */ |
||
| 23 | 10 | public function get() : array { |
|
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Finish the export query -> get the result including an object reference |
||
| 32 | * |
||
| 33 | * @return array |
||
| 34 | */ |
||
| 35 | 21 | public function getWithObject() : array { |
|
| 41 | } |