/var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Migration
NameSizeModeActions
Manager/-0755rm
AbstractMigration.php72020644editdlrm
AbstractTemplateCreation.php15950644editdlrm
CreationInterface.php20940644editdlrm
IrreversibleMigrationException.php3840644editdlrm
Manager.php409980644editdlrm
Migration.change.template.php.dist5380644editdlrm
Migration.up_down.template.php.dist2130644editdlrm
MigrationInterface.php67910644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Migration/CreationInterface.php (2094B)
*/ interface CreationInterface { /** * @param \Symfony\Component\Console\Input\InputInterface|null $input Input * @param \Symfony\Component\Console\Output\OutputInterface|null $output Output */ public function __construct(?InputInterface $input = null, ?OutputInterface $output = null); /** * @param \Symfony\Component\Console\Input\InputInterface $input Input * @return $this */ public function setInput(InputInterface $input); /** * @param \Symfony\Component\Console\Output\OutputInterface $output Output * @return $this */ public function setOutput(OutputInterface $output); /** * @return \Symfony\Component\Console\Input\InputInterface */ public function getInput(): InputInterface; /** * @return \Symfony\Component\Console\Output\OutputInterface */ public function getOutput(): OutputInterface; /** * Get the migration template. * * This will be the content that Phinx will amend to generate the migration file. * * @return string The content of the template for Phinx to amend. */ public function getMigrationTemplate(): string; /** * Post Migration Creation. * * Once the migration file has been created, this method will be called, allowing any additional * processing, specific to the template to be performed. * * @param string $migrationFilename The name of the newly created migration. * @param string $className The class name. * @param string $baseClassName The name of the base class. * @return void */ public function postMigrationCreation(string $migrationFilename, string $className, string $baseClassName): void; }