Skip to content

Commit fa2c45a

Browse files
committed
Remove a debug entry
1 parent 8106cd0 commit fa2c45a

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Zitadel PHP API version 1.1.3
1+
# Zitadel PHP API version 1.1.4
22

33
With this library you can easily communicate between your PHP projects and Zitadel over a serviceUser. The wrapper is based on the [Zitadel API](https://zitadel.com/docs/apis/introduction/).
44

src/User/Avatar.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,8 @@ public function add()
101101
),
102102
));
103103

104-
// $response = json_decode(curl_exec($curl));
105-
$response = curl_exec($curl);
104+
$response = json_decode(curl_exec($curl));
106105
curl_close($curl);
107-
108-
dump($response); exit;
109106

110107
if (isset($response->code)) {
111108
throw new Exception("Error-Code: " . $response->code . " Message: " . $response->message);

0 commit comments

Comments
 (0)