File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
src/Service/LocationService Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "variables" : {
3- "${LATEST}" : " 3.339.14 "
3+ "${LATEST}" : " 3.339.17 "
44 },
55 "endpoints" : " https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json" ,
66 "services" : {
Original file line number Diff line number Diff line change 22
33## NOT RELEASED
44
5+ ### Added
6+
7+ - AWS api-change: Added ` UNKNOWN_FIELD ` constant in ` ValidationExceptionReason `
8+
59## 1.0.4
610
711### Changed
Original file line number Diff line number Diff line change 2828 },
2929 "extra" : {
3030 "branch-alias" : {
31- "dev-master" : " 1.0 -dev"
31+ "dev-master" : " 1.1 -dev"
3232 }
3333 }
3434}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ final class ValidationExceptionReason
88 public const FIELD_VALIDATION_FAILED = 'FieldValidationFailed ' ;
99 public const MISSING = 'Missing ' ;
1010 public const OTHER = 'Other ' ;
11+ public const UNKNOWN_FIELD = 'UnknownField ' ;
1112 public const UNKNOWN_OPERATION = 'UnknownOperation ' ;
1213
1314 public static function exists (string $ value ): bool
@@ -17,6 +18,7 @@ public static function exists(string $value): bool
1718 self ::FIELD_VALIDATION_FAILED => true ,
1819 self ::MISSING => true ,
1920 self ::OTHER => true ,
21+ self ::UNKNOWN_FIELD => true ,
2022 self ::UNKNOWN_OPERATION => true ,
2123 ][$ value ]);
2224 }
You can’t perform that action at this time.
0 commit comments