Skip to content

Commit

Permalink
Additional #2 related fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
hajekj committed Nov 16, 2015
1 parent ed54fd6 commit c04b54d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/Azure.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private function request($method, $ref, $accessToken, $options = []) {

private function wrapResponse($response) {
if(empty($response)) return null;
else if(isset($response['value'])) return $response->value;
else if(isset($response['value'])) return $response['value'];
else return $response;
}

Expand Down

0 comments on commit c04b54d

Please sign in to comment.