| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | abstract class ExportQuery |
||
| 9 | { |
||
| 10 | protected ExportConfig $configurationModel; |
||
| 11 | |||
| 12 | public function __construct(ExportConfig $configurationModel) |
||
| 15 | } |
||
| 16 | |||
| 17 | public function getConfigurationModel(): ExportConfig |
||
| 18 | { |
||
| 19 | return $this->configurationModel; |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function filters(): \NovaExportConfiguration\Casts\Json\ExportConfigFilters |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return Builder |
||
| 29 | */ |
||
| 30 | abstract public function query(); |
||
| 31 | } |
||
| 32 |