Removed classes that called only the parent.

This commit is contained in:
Alex Renoki 2020-12-09 11:37:31 +02:00
parent a61cdad1f7
commit 139608f9aa
1 changed files with 0 additions and 36 deletions

View File

@ -77,29 +77,6 @@ class RedisChannelManager extends LocalChannelManager
});
}
/**
* Get the local connections, regardless of the channel
* they are connected to.
*
* @return \React\Promise\PromiseInterface
*/
public function getLocalConnections(): PromiseInterface
{
return parent::getLocalConnections();
}
/**
* Get all channels for a specific app
* for the current instance.
*
* @param string|int $appId
* @return \React\Promise\PromiseInterface[array]
*/
public function getLocalChannels($appId): PromiseInterface
{
return parent::getLocalChannels($appId);
}
/**
* Get all channels for a specific app
* across multiple servers.
@ -226,19 +203,6 @@ class RedisChannelManager extends LocalChannelManager
});
}
/**
* Get the connections count on the app
* for the current server instance.
*
* @param string|int $appId
* @param string|null $channelName
* @return PromiseInterface[int]
*/
public function getLocalConnectionsCount($appId, string $channelName = null): PromiseInterface
{
return parent::getLocalConnectionsCount($appId, $channelName);
}
/**
* Get the connections count
* across multiple servers.