Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class AbstractDB2DriverTest extends AbstractDriverTest |
||
16 | { |
||
17 | protected function createDriver() : Driver |
||
18 | { |
||
19 | return $this->getMockForAbstractClass(AbstractDB2Driver::class); |
||
|
|||
20 | } |
||
21 | |||
22 | protected function createPlatform() : AbstractPlatform |
||
23 | { |
||
24 | return new DB2Platform(); |
||
25 | } |
||
26 | |||
27 | protected function createSchemaManager(Connection $connection) : AbstractSchemaManager |
||
30 | } |
||
31 | } |
||
32 |