Skip to content

Commit

Permalink
Merge pull request #307 from pusher/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Jon Elverkilde committed May 26, 2021
2 parents a9a7f73 + ab64627 commit 7757a09
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 7.0.1

* [FIXED] Infinite recursion in `presence_auth`.

## 7.0.0

* [DEPRECATED] `get_channel_info`, `get_channels`, `socket_auth`, `presence_auth` in favour of camelCased versions
Expand Down
4 changes: 2 additions & 2 deletions src/Pusher.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Pusher implements LoggerAwareInterface, PusherInterface
/**
* @var string Version
*/
public static $VERSION = '7.0.0';
public static $VERSION = '7.0.1';

/**
* @var null|PusherCrypto
Expand Down Expand Up @@ -837,7 +837,7 @@ public function presenceAuth(string $channel, string $socket_id, string $user_id
*/
public function presence_auth(string $channel, string $socket_id, string $user_id, $user_info = null): string
{
return $this->presence_auth($channel, $socket_id, $user_id, $user_info);
return $this->presenceAuth($channel, $socket_id, $user_id, $user_info);
}

/**
Expand Down

0 comments on commit 7757a09

Please sign in to comment.