/var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Db/Plan
NameSizeModeActions
Solver/-0755rm
AlterTable.php13660644editdlrm
Intent.php11470644editdlrm
NewTable.php19520644editdlrm
Plan.php166380644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Db/Plan/Intent.php (1147B)
actions[] = $action; } /** * Returns the full list of actions * * @return \Phinx\Db\Action\Action[] */ public function getActions(): array { 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): void { $this->actions = array_merge($this->actions, $another->getActions()); } }