-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature #736 Add Support for Symfony 6 (TheMilek)
This PR was merged into the 1.6 branch. Discussion ---------- continuation of / to potential merge after merging #734 Commits ------- ea5dee9 Support symfony 6 162af39 Fix PHPStan
- Loading branch information
Showing
14 changed files
with
102 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
24 changes: 24 additions & 0 deletions
24
...xpected/address_book/SF5/validation_create_address_book_with_wrong_province_response.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"code": 400, | ||
"message": "Validation Failed", | ||
"errors": { | ||
"errors": [ | ||
"Please select proper province." | ||
], | ||
"children": { | ||
"firstName": {}, | ||
"lastName": {}, | ||
"phoneNumber": {}, | ||
"company": {}, | ||
"countryCode": {}, | ||
"street": {}, | ||
"city": {}, | ||
"postcode": {}, | ||
"provinceCode": { | ||
"errors": [ | ||
"This value is not valid." | ||
] | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...Expected/address_book/SF6/validation_create_address_book_with_wrong_country_response.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"code": 400, | ||
"message": "Validation Failed", | ||
"errors": { | ||
"children": { | ||
"firstName": [], | ||
"lastName": [], | ||
"phoneNumber": [], | ||
"company": [], | ||
"countryCode": { | ||
"errors": [ | ||
"The selected choice is invalid." | ||
] | ||
}, | ||
"street": [], | ||
"city": [], | ||
"postcode": [] | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...xpected/address_book/SF6/validation_create_address_book_with_wrong_province_response.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"code": 400, | ||
"message": "Validation Failed", | ||
"errors": { | ||
"errors": [ | ||
"Please select proper province." | ||
], | ||
"children": { | ||
"firstName": [], | ||
"lastName": [], | ||
"phoneNumber": [], | ||
"company": [], | ||
"countryCode": [], | ||
"street": [], | ||
"city": [], | ||
"postcode": [], | ||
"provinceCode": { | ||
"errors": [ | ||
"The selected choice is invalid." | ||
] | ||
} | ||
} | ||
} | ||
} |