migration_status = $migration_status; $this->options_helper = $options_helper; } /** * Runs the health check. Checks if the tagline is set to WordPress' default tagline, or to its set translation. * * @return void */ public function run() { $this->links_table_accessible = $this->migration_status->is_version( 'free', \WPSEO_VERSION ); } /** * Returns true if the links table is accessible * * @return bool The boolean indicating if the health check was successful. */ public function is_successful() { return $this->links_table_accessible; } }