Removed classes that called only the parent.
This commit is contained in:
parent
a61cdad1f7
commit
139608f9aa
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue