Failed Conditions
Pull Request — master (#24)
by Adrien
03:04
created
tests/Service/TransportFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 class TransportFactoryTest extends TestCase
12 12
 {
13 13
     #[DataProvider('providerDsn')]
14
-    public function testDsn(null|array|string $input, string $expected): void
14
+    public function testDsn(null | array | string $input, string $expected): void
15 15
     {
16 16
         $actual = TransportFactory::dsn($input);
17 17
 
Please login to merge, or discard this patch.
tests/Api/Scalar/AbstractDecimalTypeTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     #[DataProvider('providerInputs')]
50
-    public function testSerialize(int $decimal, ?string $minimum, ?string $maximum, null|float|int|string $input): void
50
+    public function testSerialize(int $decimal, ?string $minimum, ?string $maximum, null | float | int | string $input): void
51 51
     {
52 52
         $type = $this->createType($decimal, $minimum, $maximum);
53 53
         $actual = $type->serialize($input);
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     }
56 56
 
57 57
     #[DataProvider('providerInputs')]
58
-    public function testParseValue(int $decimal, ?string $minimum, ?string $maximum, null|float|int|string $input, ?string $expected): void
58
+    public function testParseValue(int $decimal, ?string $minimum, ?string $maximum, null | float | int | string $input, ?string $expected): void
59 59
     {
60 60
         $type = $this->createType($decimal, $minimum, $maximum);
61 61
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     #[DataProvider('providerInputs')]
73
-    public function testParseLiteral(int $decimal, ?string $minimum, ?string $maximum, null|float|int|string $input, ?string $expected): void
73
+    public function testParseLiteral(int $decimal, ?string $minimum, ?string $maximum, null | float | int | string $input, ?string $expected): void
74 74
     {
75 75
         $type = $this->createType($decimal, $minimum, $maximum);
76 76
 
Please login to merge, or discard this patch.