Skip to content

Commit 7757a09

Browse files
author
Jon Elverkilde
authored
Merge pull request #307 from pusher/develop
Develop
2 parents a9a7f73 + ab64627 commit 7757a09

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 7.0.1
4+
5+
* [FIXED] Infinite recursion in `presence_auth`.
6+
37
## 7.0.0
48

59
* [DEPRECATED] `get_channel_info`, `get_channels`, `socket_auth`, `presence_auth` in favour of camelCased versions

src/Pusher.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Pusher implements LoggerAwareInterface, PusherInterface
1818
/**
1919
* @var string Version
2020
*/
21-
public static $VERSION = '7.0.0';
21+
public static $VERSION = '7.0.1';
2222

2323
/**
2424
* @var null|PusherCrypto
@@ -837,7 +837,7 @@ public function presenceAuth(string $channel, string $socket_id, string $user_id
837837
*/
838838
public function presence_auth(string $channel, string $socket_id, string $user_id, $user_info = null): string
839839
{
840-
return $this->presence_auth($channel, $socket_id, $user_id, $user_info);
840+
return $this->presenceAuth($channel, $socket_id, $user_id, $user_info);
841841
}
842842

843843
/**

0 commit comments

Comments
 (0)