@@ -42,7 +42,7 @@ |
||
| 42 | 42 | * |
| 43 | 43 | * @param string|null $value the value to convert |
| 44 | 44 | */ |
| 45 | - public function convertToPHPValue($value, AbstractPlatform $platform): array|bool|float|int|string|null |
|
| 45 | + public function convertToPHPValue($value, AbstractPlatform $platform): array | bool | float | int | string | null |
|
| 46 | 46 | { |
| 47 | 47 | if ($value === null) { |
| 48 | 48 | return null; |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | /** |
| 54 | 54 | * @throws InvalidJsonItemForPHPException When the PostgreSQL value is not JSON-decodable |
| 55 | 55 | */ |
| 56 | - public static function transformPostgresJsonEncodedValueToPHPValue(string $postgresValue): array|bool|float|int|string|null |
|
| 56 | + public static function transformPostgresJsonEncodedValueToPHPValue(string $postgresValue): array | bool | float | int | string | null |
|
| 57 | 57 | { |
| 58 | 58 | try { |
| 59 | 59 | // @phpstan-ignore-next-line |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | return $postgresValue; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - protected function transformFromPostgresJson(string $postgresValue): array|bool|float|int|string|null |
|
| 35 | + protected function transformFromPostgresJson(string $postgresValue): array | bool | float | int | string | null |
|
| 36 | 36 | { |
| 37 | 37 | return PostgresJsonToPHPArrayTransformer::transformPostgresJsonEncodedValueToPHPValue($postgresValue); |
| 38 | 38 | } |