for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SwooleTW\Http\Table;
use Swoole\Table;
class SwooleTable
{
/**
* Registered swoole tables.
*
* @var array
*/
protected $tables = [];
* Add a swoole table to existing tables.
* @param string $name
* @param \Swoole\Table $table
* @return \SwooleTW\Http\Table\SwooleTable
public function add(string $name, Table $table)
$this->tables[$name] = $table;
return $this;
}
* Get a swoole table by its name from existing tables.
* @return \Swoole\Table $table
public function get(string $name)
return $this->tables[$name] ?? null;
* Get all existing swoole tables.
* @return array
public function getAll()
return $this->tables;
* Dynamically access table.
* @param string $key
* @return table
public function __get($key)
return $this->get($key);