Passed
Push — main ( c73e00...0a00da )
by
unknown
15:13 queued 14s
created
src/Domain/Model/AddressType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare( strict_types=1 );
2
+declare(strict_types=1);
3 3
 
4 4
 namespace WMDE\Fundraising\AddressChangeContext\Domain\Model;
5 5
 
Please login to merge, or discard this patch.
src/ScalarTypeConverter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare( strict_types=1 );
2
+declare(strict_types=1);
3 3
 
4 4
 namespace WMDE\Fundraising\AddressChangeContext;
5 5
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 		return strval( self::assertScalarType( $value ) );
26 26
 	}
27 27
 
28
-	private static function assertScalarType( mixed $value ): int|string|bool|float {
28
+	private static function assertScalarType( mixed $value ): int | string | bool | float {
29 29
 		if ( is_scalar( $value ) ) {
30 30
 			return $value;
31 31
 		}
Please login to merge, or discard this patch.