Skip to content

Commit

Permalink
Fix for last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Aug 4, 2016
1 parent 13285c7 commit ad36071
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Command/MigrateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$table
->setHeaders(array('#', 'Migration', 'Notes'))
->setRows($data);
$table->render();
$table->render($output);

$output->writeln('');
// ask user for confirmation to make changes
Expand Down
2 changes: 1 addition & 1 deletion Command/StatusCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,6 @@ public function execute(InputInterface $input, OutputInterface $output)
$table
->setHeaders(array('#', 'Migration', 'Status', 'Executed on', 'Notes'))
->setRows($data);
$table->render();
$table->render($output);
}
}

0 comments on commit ad36071

Please sign in to comment.