Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | private function getGatewayForDatabasePlatform(string $currentDatabasePlatformName) |
||
42 | { |
||
43 | foreach ($this->gateways as $databasePlatformName => $gateway) { |
||
44 | if ($currentDatabasePlatformName === $databasePlatformName) { |
||
45 | return $gateway; |
||
46 | } |
||
47 | } |
||
48 | |||
49 | return $this->fallbackGateway; |
||
50 | } |
||
51 | } |
||
52 |