Back to ChangeSet class

Method fix

public void
fix
()
Runs the update query to apply the change to the database
Returns
  • void
Since
  • 2.5
Class: ChangeSet
Project: Joomla

Method fix - Source code

/**
 * Runs the update query to apply the change to the database
 *
 * @return  void
 *
 * @since   2.5
 */
public function fix()
{
    $this->check();
    foreach ($this->changeItems as $item) {
        $item->fix();
    }
}