| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | class SQLServerDriver extends AbstractDriver implements DriverInterface |
||
| 28 | { |
||
| 29 | protected const IDENTIFIER_OPEN_QUOTE = '['; |
||
| 30 | protected const IDENTIFIER_CLOSE_QUOTE = ']'; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string|null $schema_name |
||
| 34 | * |
||
| 35 | * @return Schema |
||
| 36 | */ |
||
| 37 | public function diffSchema(string $schema_name = null): Schema |
||
| 42 |