@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WMDE\Fundraising\AddressChangeContext\Tests\Unit\UseCases; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WMDE\Fundraising\AddressChangeContext\UseCases\ReadAddressChange; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WMDE\Fundraising\AddressChangeContext\UseCases\ReadAddressChange; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WMDE\Fundraising\AddressChangeContext; |
6 | 6 | |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * @return string[] |
23 | 23 | */ |
24 | 24 | public function getDoctrineMappingPaths(): array { |
25 | - return [ self::DOCTRINE_CLASS_MAPPING_DIRECTORY ]; |
|
25 | + return [self::DOCTRINE_CLASS_MAPPING_DIRECTORY]; |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -1,5 +1,5 @@ |
||
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 |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WMDE\Fundraising\AddressChangeContext\UseCases\ChangeAddress; |
6 | 6 | |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | public function changeAddress( ChangeAddressRequest $request ): ChangeAddressResponse { |
21 | 21 | $addressChange = $this->addressChangeRepository->getAddressChangeByUuid( $request->identifier ); |
22 | 22 | if ( $addressChange === null ) { |
23 | - return ChangeAddressResponse::newErrorResponse( [ ChangeAddressResponse::ERROR_ADDRESS_NOT_FOUND ] ); |
|
23 | + return ChangeAddressResponse::newErrorResponse( [ChangeAddressResponse::ERROR_ADDRESS_NOT_FOUND] ); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | $newIdentifier = AddressChangeId::fromString( AddressChangeBuilder::generateUuid() ); |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | try { |
29 | 29 | $addressChange->performAddressChange( $this->buildAddress( $request ), $newIdentifier ); |
30 | 30 | } catch ( ChangeAddressValidationException $e ) { |
31 | - return ChangeAddressResponse::newErrorResponse( [ $e->getMessage() ] ); |
|
31 | + return ChangeAddressResponse::newErrorResponse( [$e->getMessage()] ); |
|
32 | 32 | } |
33 | 33 | } |
34 | 34 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WMDE\Fundraising\AddressChangeContext\Tests\Unit\Domain\Model; |
6 | 6 | |
@@ -86,23 +86,23 @@ discard block |
||
86 | 86 | * @return \Generator<string[]> |
87 | 87 | */ |
88 | 88 | public static function emptyPersonFieldTestProvider(): \Generator { |
89 | - yield [ 'Salutation', '', 'Prof. Dr.', 'Testdude', 'Testfamily', 'Test Address 123', '12345', 'Test City', 'Test Country' ]; |
|
90 | - yield [ 'First Name', 'Herr', 'Prof. Dr.', '', 'Testfamily', 'Test Address 123', '12345', 'Test City', 'Test Country' ]; |
|
91 | - yield [ 'Last Name', 'Herr', 'Prof. Dr.', 'Testdude', '', 'Test Address 123', '12345', 'Test City', 'Test Country' ]; |
|
92 | - yield [ 'Address', 'Herr', 'Prof. Dr.', 'Testdude', 'Testfamily', '', '12345', 'Test City', 'Test Country' ]; |
|
93 | - yield [ 'Post Code', 'Herr', 'Prof. Dr.', 'Testdude', 'Testfamily', 'Test Address 123', '', 'Test City', 'Test Country' ]; |
|
94 | - yield [ 'City', 'Herr', 'Prof. Dr.', 'Testdude', 'Testfamily', 'Test Address 123', '12345', '', 'Test Country' ]; |
|
95 | - yield [ 'Country', 'Herr', 'Prof. Dr.', 'Testdude', 'Testfamily', 'Test Address 123', '12345', 'Test City', '' ]; |
|
89 | + yield ['Salutation', '', 'Prof. Dr.', 'Testdude', 'Testfamily', 'Test Address 123', '12345', 'Test City', 'Test Country']; |
|
90 | + yield ['First Name', 'Herr', 'Prof. Dr.', '', 'Testfamily', 'Test Address 123', '12345', 'Test City', 'Test Country']; |
|
91 | + yield ['Last Name', 'Herr', 'Prof. Dr.', 'Testdude', '', 'Test Address 123', '12345', 'Test City', 'Test Country']; |
|
92 | + yield ['Address', 'Herr', 'Prof. Dr.', 'Testdude', 'Testfamily', '', '12345', 'Test City', 'Test Country']; |
|
93 | + yield ['Post Code', 'Herr', 'Prof. Dr.', 'Testdude', 'Testfamily', 'Test Address 123', '', 'Test City', 'Test Country']; |
|
94 | + yield ['City', 'Herr', 'Prof. Dr.', 'Testdude', 'Testfamily', 'Test Address 123', '12345', '', 'Test Country']; |
|
95 | + yield ['Country', 'Herr', 'Prof. Dr.', 'Testdude', 'Testfamily', 'Test Address 123', '12345', 'Test City', '']; |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
99 | 99 | * @return \Generator<string[]> |
100 | 100 | */ |
101 | 101 | public static function emptyCompanyFieldTestProvider(): \Generator { |
102 | - yield [ 'Company', '', 'Test Street 123', '12345', 'Test City', 'Test Country' ]; |
|
103 | - yield [ 'Address', 'Test Company', '', '12345', 'Test City', 'Test Country' ]; |
|
104 | - yield [ 'Post Code', 'Test Company', 'Test Street 123', '', 'Test City', 'Test Country' ]; |
|
105 | - yield [ 'City', 'Test Company', 'Test Street 123', '12345', '', 'Test Country' ]; |
|
106 | - yield [ 'Country', 'Test Company', 'Test Street 123', '12345', 'Test City', '' ]; |
|
102 | + yield ['Company', '', 'Test Street 123', '12345', 'Test City', 'Test Country']; |
|
103 | + yield ['Address', 'Test Company', '', '12345', 'Test City', 'Test Country']; |
|
104 | + yield ['Post Code', 'Test Company', 'Test Street 123', '', 'Test City', 'Test Country']; |
|
105 | + yield ['City', 'Test Company', 'Test Street 123', '12345', '', 'Test Country']; |
|
106 | + yield ['Country', 'Test Company', 'Test Street 123', '12345', 'Test City', '']; |
|
107 | 107 | } |
108 | 108 | } |
@@ -4,21 +4,21 @@ |
||
4 | 4 | // DO NOT USE THIS IN PRODUCTION |
5 | 5 | |
6 | 6 | return [ |
7 | - 'table_storage' => [ |
|
8 | - 'table_name' => 'doctrine_migration_versions', |
|
9 | - 'version_column_name' => 'version', |
|
10 | - 'version_column_length' => 1024, |
|
11 | - 'executed_at_column_name' => 'executed_at', |
|
12 | - 'execution_time_column_name' => 'execution_time', |
|
13 | - ], |
|
7 | + 'table_storage' => [ |
|
8 | + 'table_name' => 'doctrine_migration_versions', |
|
9 | + 'version_column_name' => 'version', |
|
10 | + 'version_column_length' => 1024, |
|
11 | + 'executed_at_column_name' => 'executed_at', |
|
12 | + 'execution_time_column_name' => 'execution_time', |
|
13 | + ], |
|
14 | 14 | |
15 | - 'migrations_paths' => [ |
|
16 | - 'WMDE\Fundraising\AddressChangeContext\DataAccess\Migrations' => './src/DataAccess/Migrations', |
|
17 | - ], |
|
15 | + 'migrations_paths' => [ |
|
16 | + 'WMDE\Fundraising\AddressChangeContext\DataAccess\Migrations' => './src/DataAccess/Migrations', |
|
17 | + ], |
|
18 | 18 | |
19 | - 'all_or_nothing' => true, |
|
20 | - 'organize_migrations' => 'none', |
|
21 | - 'connection' => null, |
|
22 | - 'em' => null, |
|
19 | + 'all_or_nothing' => true, |
|
20 | + 'organize_migrations' => 'none', |
|
21 | + 'connection' => null, |
|
22 | + 'em' => null, |
|
23 | 23 | ]; |
24 | 24 |