Skip to content

Commit

Permalink
Merge pull request #142 from ticketevolution/use-put-for-setticketpro…
Browse files Browse the repository at this point in the history
…perties

Use `PUT` for `setTicketProperties()`.
  • Loading branch information
jwcobb committed Jun 9, 2017
2 parents d5e455e + 301f13e commit f732577
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog

## 4.0.3 (June 9, 2017)
- Use `PUT` for `setTicketProperties()`.

## 4.0.2 (June 9, 2017)
- Allow `string` or `int` `barcode` for `setTicketProperties()`.

Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Expand Up @@ -17,7 +17,7 @@ class Client
*
* @const string
*/
const VERSION = '4.0.2';
const VERSION = '4.0.3';

/**
* Guzzle service description
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/v9/tickets.php
Expand Up @@ -65,7 +65,7 @@
*/
'setTicketProperties' => [
'extends' => null,
'httpMethod' => 'GET',
'httpMethod' => 'PUT',
'uri' => '/v9/tickets/{ticket_id}',
'summary' => 'Add a PDF eticket and/or barcode to an individual ticket/seat.',
'notes' => '',
Expand Down

0 comments on commit f732577

Please sign in to comment.