@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | ->always() |
| 48 | 48 | // here we force casting `float` to `string` to avoid TypeError when working with Redis |
| 49 | 49 | // see for more details: https://github.com/phpredis/phpredis/issues/1538 |
| 50 | - ->then(function ($v) { |
|
| 50 | + ->then(function($v) { |
|
| 51 | 51 | if ($v == null) { |
| 52 | 52 | return null; |
| 53 | 53 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | ->always() |
| 70 | 70 | // here we force casting `float` to `string` to avoid TypeError when working with Redis |
| 71 | 71 | // see for more details: https://github.com/phpredis/phpredis/issues/1538 |
| 72 | - ->then(function ($v) { return (string) $v; } ) |
|
| 72 | + ->then(function($v) { return (string) $v; } ) |
|
| 73 | 73 | ->end() |
| 74 | 74 | ->end() |
| 75 | 75 | ->booleanNode('persistent_connections')->end() |