| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | abstract class SingleExportBase extends ExportBase implements SingleExport |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Finish the export query -> get the result |
||
| 22 | * |
||
| 23 | * @return array The query result |
||
| 24 | */ |
||
| 25 | public function get() : array { |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Finish the export query -> get the result including an object reference |
||
| 34 | * |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function getWithObject() : array { |
||
| 43 | } |