/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Plan
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Plan/Intent.php (1142B)
actions[] = $action;
}
/**
* Returns the full list of actions
*
* @return \Phinx\Db\Action\Action[]
*/
public function getActions()
{
return $this->actions;
}
/**
* Merges another Intent object with this one
*
* @param \Phinx\Db\Plan\Intent $another The other intent to merge in
*
* @return void
*/
public function merge(Intent $another)
{
$this->actions = array_merge($this->actions, $another->getActions());
}
}