Skip to content

Commit

Permalink
Merge pull request #33 from kornrunner/master
Browse files Browse the repository at this point in the history
Symfony 5 compat
  • Loading branch information
sokil authored Feb 14, 2020
2 parents aaf6655 + cb3a51c commit 6c57662
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 6c57662

Please sign in to comment.