Skip to content

Commit 2cef811

Browse files
authored
Fix undefined variable in reply message example (#96)
1 parent fa76a02 commit 2cef811

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ $channel->addMembers(['mike', 'joe']);
9898
$msg_bob = $channel->sendMessage(["text" => "Hi June!"], 'bob-1');
9999

100100
// Reply to a message
101-
$reply_bob = $channel->sendMessage(["text" => "Long time no see!"], 'bob-1', $msg_june['message']['id']);
101+
$reply_bob = $channel->sendMessage(["text" => "Long time no see!"], 'bob-1', $msg_bob['message']['id']);
102102
```
103103

104104
### Reactions

0 commit comments

Comments
 (0)