Skip to content

Commit

Permalink
Remove dangling comma
Browse files Browse the repository at this point in the history
  • Loading branch information
noahtallen committed Oct 19, 2023
1 parent 6b498f2 commit 6e374d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ private static function handle_ping( $subscriber_to_messages_path, $subscriber_i
* @param string $subscriber_to_messages_path The path to the file that contains the messages of the subscribers.
* @param string $connected_subscriber_id The subscriber id.
*/
private static function clean_up_old_connections( $topics_to_subscribers_path, $subscriber_to_messages_path, $connected_subscriber_id, ) {
private static function clean_up_old_connections( $topics_to_subscribers_path, $subscriber_to_messages_path, $connected_subscriber_id ) {
$subscribers_to_last_connection_path = get_temp_dir() . DIRECTORY_SEPARATOR . 'subscribers_to_last_connection.txt';
// Example: array( 2323232121 => 34343433323(timestamp) ).

Expand Down

0 comments on commit 6e374d1

Please sign in to comment.