Skip to content

Commit

Permalink
Symfony 5 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
kornrunner committed Feb 14, 2020
1 parent aaf6655 commit cb3a51c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Console/Command/Create.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,6 @@ protected function execute(InputInterface $input, OutputInterface $output)

// show result
$output->writeln('New migration created at ' . $migrationFilePath);
return 0;
}
}
1 change: 1 addition & 0 deletions src/Console/Command/Init.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->getManager()->getMigrationsDir()
)
);
return 0;
}
}
1 change: 1 addition & 0 deletions src/Console/Command/Migrate.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln('done.');
})
->migrate($revision, $environment);
return 0;
}
}
1 change: 1 addition & 0 deletions src/Console/Command/Rollback.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln('done.');
})
->rollback($revision, $environment);
return 0;
}
}
1 change: 1 addition & 0 deletions src/Console/Command/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

$output->writeln('');
return 0;
}
}

0 comments on commit cb3a51c

Please sign in to comment.