for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace TBolier\RethinkQL\Query\Operation;
use TBolier\RethinkQL\Message\MessageInterface;
use TBolier\RethinkQL\Query\AbstractQuery;
use TBolier\RethinkQL\RethinkInterface;
use TBolier\RethinkQL\Types\Term\TermType;
class TableList extends AbstractQuery
{
/**
* @param RethinkInterface $rethink
* @param MessageInterface $message
*/
public function __construct(RethinkInterface $rethink, MessageInterface $message)
parent::__construct($rethink, $message);
$this->rethink = $rethink;
$this->message = $message;
}
* @inheritdoc
public function toArray(): array
return [
TermType::TABLE_LIST,
];