Passed
Pull Request — master (#4321)
by Owen
14:14
created
tests/PhpSpreadsheetTests/Document/PropertiesTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     }
47 47
 
48 48
     #[DataProvider('providerCreationTime')]
49
-    public function testSetCreated(null|int $expectedCreationTime, null|int|string $created): void
49
+    public function testSetCreated(null | int $expectedCreationTime, null | int | string $created): void
50 50
     {
51 51
         if ($expectedCreationTime === null) {
52 52
             do {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     }
81 81
 
82 82
     #[DataProvider('providerModifiedTime')]
83
-    public function testSetModified(mixed $expectedModifiedTime, null|int|string $modified): void
83
+    public function testSetModified(mixed $expectedModifiedTime, null | int | string $modified): void
84 84
     {
85 85
         if ($expectedModifiedTime === null) {
86 86
             do {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     }
163 163
 
164 164
     #[DataProvider('providerCustomProperties')]
165
-    public function testSetCustomProperties(mixed $expectedType, mixed $expectedValue, string $propertyName, null|bool|float|int|string $propertyValue, ?string $propertyType = null): void
165
+    public function testSetCustomProperties(mixed $expectedType, mixed $expectedValue, string $propertyName, null | bool | float | int | string $propertyValue, ?string $propertyType = null): void
166 166
     {
167 167
         if ($propertyType === null) {
168 168
             $this->properties->setCustomProperty($propertyName, $propertyValue);
Please login to merge, or discard this patch.