Skip to content

Commit

Permalink
Implemented DocIssuance_IssueTicket, Offer_ConfirmCarOffer, Info_Enco…
Browse files Browse the repository at this point in the history
…deDecodeCity. Implemented response checking for all supported messages, updated documentation to reflect all changes & provided samples for all new messages.
  • Loading branch information
DerMika committed Jun 20, 2016
1 parent 4f85343 commit c403535
Show file tree
Hide file tree
Showing 93 changed files with 4,869 additions and 159 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# 2016-06

* Implemented Fare_PricePNRWithBookingClass version 13 and up (https://github.com/amabnl/amadeus-ws-client/issues/6)
* Implemented DocIssuance_IssueTicket (https://github.com/amabnl/amadeus-ws-client/issues/7)
* Implemented Info_EncodeDecodeCity
* Implemented Offer_ConfirmCarOffer
* Implemented checking for response errors for all supported messages _except Command_Cryptic_. For Command_Cryptic, you need to parse the response yourself to check for errors.
* Removed the 'asString' request option - the `Amadeus\Client\Result` object now always contains the result XML in the `responseXml` property.

# 2016-05

Completely re-worked the Result being returned by Web Service calls: the XML or PHP object is now encapsulated in an `Amadeus\Client\Result` object which makes checking for errors or warnings much easier.

The library now always returns both the PHP object generated by `\SoapClient` as well as the result string.

The Result object also has a `status` property which contains the status of the message performed: FATAL, OK, WARN or INFO.

The library will now also convert `\SoapFault` exceptions to a FATAL result status.

(https://github.com/amabnl/amadeus-ws-client/issues/2)

# 2016-04

* Added support for providing custom `\SoapClient` options (https://github.com/amabnl/amadeus-ws-client/issues/4)
Expand Down
Loading

0 comments on commit c403535

Please sign in to comment.