From ad36071cc2361af0fe0d3fe17f556e60c647f9f6 Mon Sep 17 00:00:00 2001 From: gggeek Date: Thu, 4 Aug 2016 22:36:17 +0100 Subject: [PATCH] Fix for last commit --- Command/MigrateCommand.php | 2 +- Command/StatusCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Command/MigrateCommand.php b/Command/MigrateCommand.php index 906f6fac..444e137e 100644 --- a/Command/MigrateCommand.php +++ b/Command/MigrateCommand.php @@ -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 diff --git a/Command/StatusCommand.php b/Command/StatusCommand.php index 988c0baa..a52636b8 100644 --- a/Command/StatusCommand.php +++ b/Command/StatusCommand.php @@ -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); } }