Skip to content

Commit

Permalink
修正
Browse files Browse the repository at this point in the history
  • Loading branch information
yunwuxin committed Aug 8, 2016
1 parent 2384bbe commit a856b7c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions phinx/src/Phinx/Db/Adapter/PdoAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
namespace Phinx\Db\Adapter;

use think\console\Output;
use think\console\output\Nothing as NothingOutput;
use Phinx\Db\Table;
use Phinx\Db\Table\Column;
use Phinx\Migration\MigrationInterface;
Expand Down Expand Up @@ -140,7 +139,7 @@ public function setOutput(Output $output)
public function getOutput()
{
if (null === $this->output) {
$output = new NothingOutput();
$output = new Output('nothing');
$this->setOutput($output);
}
return $this->output;
Expand Down

0 comments on commit a856b7c

Please sign in to comment.