option = $option; $this->migration_executor = $migration_executor; } /** * @param string $running_version */ public function update_if_needed( $running_version ) { $stored_version = $this->option->get_plugin_version(); if ( $stored_version !== $running_version ) { $this->migration_executor->migrate(); $this->option->update_plugin_version( $running_version ); } } }