@@ -30,7 +30,7 @@ |
||
| 30 | 30 | * Test for loading closest SQL context |
| 31 | 31 | */ |
| 32 | 32 | #[DataProvider('contextLoadingProvider')] |
| 33 | - public function testLoadClosest(string $context, string|null $expected): void |
|
| 33 | + public function testLoadClosest(string $context, string | null $expected): void |
|
| 34 | 34 | { |
| 35 | 35 | $this->assertEquals($expected, Context::loadClosest($context)); |
| 36 | 36 | if ($expected !== null) { |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | * Test access to string. |
| 87 | 87 | */ |
| 88 | 88 | #[DataProvider('utf8StringsProvider')] |
| 89 | - public function testAccess(string $text, string|null $pos10, string|null $pos20): void |
|
| 89 | + public function testAccess(string $text, string | null $pos10, string | null $pos20): void |
|
| 90 | 90 | { |
| 91 | 91 | $str = new UtfString($text); |
| 92 | 92 | $this->assertEquals($pos10, $str->offsetGet(10)); |