Browse Source

remove extra code

main
ghost 7 months ago
parent
commit
0144e0e1f0
  1. 4
      src/Server/Ratchet.php

4
src/Server/Ratchet.php

@ -36,7 +36,7 @@ class Ratchet implements MessageComponentInterface
// Init allowed chat rooms registry // Init allowed chat rooms registry
if ($namespaces = $this->_kevacoin->kevaListNamespaces()) if ($namespaces = $this->_kevacoin->kevaListNamespaces())
{ {
$i = 1; foreach ((array) $namespaces as $namespace) foreach ((array) $namespaces as $namespace)
{ {
// Skip system namespaces // Skip system namespaces
if (str_starts_with($namespace['displayName'], '_')) if (str_starts_with($namespace['displayName'], '_'))
@ -58,7 +58,7 @@ class Ratchet implements MessageComponentInterface
} }
// Append room to the namespace registry // Append room to the namespace registry
$this->_namespaces[$i++] = [ $this->_namespaces[] = [
'hash' => $namespace['namespaceId'], 'hash' => $namespace['namespaceId'],
'name' => $namespace['displayName'] 'name' => $namespace['displayName']
]; ];

Loading…
Cancel
Save