Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class ModelQueryExtractor extends DbExtractor |
||
21 | { |
||
22 | /** |
||
23 | * Instantiate the ModelQueryExtractor |
||
24 | * |
||
25 | * @param Builder|null $extractQuery |
||
26 | * |
||
27 | * @throws NodalFlowException |
||
28 | * @throws YaEtlException |
||
29 | */ |
||
30 | public function __construct(?Builder $extractQuery = null) |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Set the extract query |
||
41 | * |
||
42 | * @param Builder $extractQuery |
||
43 | * |
||
44 | * @throws YaEtlException |
||
45 | * |
||
46 | * @return static |
||
47 | */ |
||
48 | public function setExtractQuery($extractQuery): DbExtractorAbstract |
||
57 |