Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 54.55% |
Changes | 0 |
1 | <?php |
||
13 | abstract class AbstractSchemaSynchronizer implements SchemaSynchronizer |
||
14 | { |
||
15 | /** @var Connection */ |
||
16 | protected $conn; |
||
17 | |||
18 | 88 | public function __construct(Connection $conn) |
|
19 | { |
||
20 | 88 | $this->conn = $conn; |
|
21 | 88 | } |
|
22 | |||
23 | /** |
||
24 | * @param array<int, string> $sql |
||
25 | */ |
||
26 | protected function processSqlSafely(array $sql) : void |
||
32 | } |
||
33 | } |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @param array<int, string> $sql |
||
38 | */ |
||
39 | 44 | protected function processSql(array $sql) : void |
|
46 |