Passed
Push — master ( 10817c...4843cb )
by William
04:05 queued 11s
created
tests/Lexer/ContextTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
tests/Misc/UtfStringTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
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));
Please login to merge, or discard this patch.