@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | public function parseValue(mixed $value): mixed |
28 | 28 | { |
29 | - if (! is_string($value)) { |
|
29 | + if (!is_string($value)) { |
|
30 | 30 | throw new Error('Blob as base64 is not a string: ' . $value); |
31 | 31 | } |
32 | 32 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | public function parseLiteral(ASTNode $valueNode, array|null $variables = null): string |
22 | 22 | { |
23 | 23 | // @codeCoverageIgnoreStart |
24 | - if (! $valueNode instanceof StringValueNode) { |
|
24 | + if (!$valueNode instanceof StringValueNode) { |
|
25 | 25 | throw new Error('Query error: Uuid can only parse strings got: ' . $valueNode->kind, $valueNode); |
26 | 26 | } |
27 | 27 |