Adam Malone

Results 25 comments of Adam Malone

The more I look at this, the more inclined I am to either parse the `_links` URL in the `OperationResponse` class or wait for the notification UUID to be passed...

Thanks for that extra context @itafroma. You’ve given me a good idea about how we can make this happen. Because all tasks that would effect a change causing a notification...

I've created a first pass in #111 that definitely won't pass tests. I've branched from #108 so the PR will look extra-large until that is merged in. Functionality-wise we're looking...

And for notifications (the original point of this issue), we'd be looking at something like: ``` $connector = new Connector($config); $client = Client::factory($connector); $application = new Applications($client); $applicationUuid = '62f5f533-a138-04be-7421-ae6aa3281a6d';...

Looks like this passes tests now. As this is a fairly meaty addition - @eporama could I please ask you to have a play at your end with #111 to...

Thanks @itafroma I think what's been written so far aligns with your 1st and 2nd bullets nicely. I also think your final comment is taken care of because I ended...

This is a bit cleaner (amazing what you can find on StackOverflow) but I fear it suffers from being a bit opaque to someone coming in fresh (or me in...

> One question (may be a separate issue) is how to refresh that notification so that you can loop until "completed"… We probably don't need it on a lot of...

Ok, pretty mega restructure but I believe without any changes to end user code: - Created new `CollectionResponse` class which all collections will extend e.g. `ApplicationsResponse`, `EnvironmentsResponse` etc. `CollectionResponse` extends...

Commenting for myself later that it might be worth putting `getLinkedResource` on `Client` or in another trait.