/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/AlterTable.php (1353B)
table = $table;
}
/**
* Adds another action to the collection
*
* @param \Phinx\Db\Action\Action $action The action to add
*
* @return void
*/
public function addAction(Action $action)
{
$this->actions[] = $action;
}
/**
* Returns the table associated to this collection
*
* @return \Phinx\Db\Table\Table
*/
public function getTable()
{
return $this->table;
}
/**
* Returns an array with all collected actions
*
* @return \Phinx\Db\Action\Action[]
*/
public function getActions()
{
return $this->actions;
}
}