validateTableName(); $this->setFullTableName(); $query = $this->wpdb->prepare("SHOW TABLES LIKE %s", $this->fullName); $this->result = $this->wpdb->get_var($query); return $this; } /** * Retrieves the result of the table inspection. * * @return mixed The result of the inspection query. */ public function getResult() { return $this->result; } }