/** * {@inheritdoc} */ public function hasTable($table) { try { if (!is_null($this->connection->openBucket($table)->getName())) { return true; } } catch (\CouchbaseException $e) { return false; } }