huddledigital / zendesk-laravel

Laravel wrapper for zendesk/zendesk_api_client_php package.
MIT License
104 stars 70 forks source link

Return json instead of array #2

Closed ChristopherDosin closed 8 years ago

ChristopherDosin commented 8 years ago

Thanks for the package,

would you tell me how i can return the results as json instead of an array?

harry-huddle commented 8 years ago

Hi Kay,

Since our package is just a wrapper for the Zendesk API client, it's the response from that which gives you it as an array. I've found the file and line where the json is decoded, you would have to override this file and method in order to get a json result.

Line 108 of this file: https://github.com/zendesk/zendesk_api_client_php/blob/master/src/Zendesk/API/Http.php

To be honest though, it's probably more effort than it's worth, if you need json it would be easier to just json_encode it I think.

Harry