| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 9 | abstract class Command implements DatabaseReplicator\Command |
||
| 10 | { |
||
| 11 | |||
| 12 | public function importFiles(Source\Files $files, DatabaseReplicator\Config $config): void |
||
| 19 | } |
||
| 20 | } |
||
| 21 | |||
| 22 | |||
| 23 | abstract protected function commandImport(Source\Files $files, DatabaseReplicator\Config $config): void; |
||
| 24 | |||
| 26 |