@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | } elseif ('true' === $optionValue) { |
| 96 | 96 | $optionValue = true; |
| 97 | 97 | } elseif (\is_numeric($optionValue)) { |
| 98 | - $optionValue = (int)$optionValue; |
|
| 98 | + $optionValue = (int) $optionValue; |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | $clientConfiguration->set($optionName, $optionValue); |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | |
| 107 | 107 | private static function parseDsn(Url $dsn): array |
| 108 | 108 | { |
| 109 | - $data = ['host' => $dsn->getHost(),]; |
|
| 109 | + $data = ['host' => $dsn->getHost(), ]; |
|
| 110 | 110 | |
| 111 | 111 | if (null !== $dsn->getScheme()) { |
| 112 | 112 | $data['transport'] = $dsn->getScheme(); |