File: /www/wwwroot/mm.paycheckc.com/vendor/xia/migration/src/command/Output.php
<?php
namespace think\migration\command;
use Symfony\Component\Console\Formatter\OutputFormatterInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Output implements OutputInterface
{
/**
* @var \think\console\Output
*/
protected $output;
public function write($messages, bool $newline = false, int $options = 0)
{
$this->output = new \think\console\Output();
$this->output->write($messages, true, $options);
}
public function writeln($messages, int $options = 0)
{
$this->write($messages, true, $options);
}
public function setVerbosity(int $level)
{
// TODO: Implement setVerbosity() method.
}
public function getVerbosity()
{
// TODO: Implement getVerbosity() method.
}
public function isQuiet()
{
// TODO: Implement isQuiet() method.
}
public function isVerbose()
{
// TODO: Implement isVerbose() method.
}
public function isVeryVerbose()
{
// TODO: Implement isVeryVerbose() method.
}
public function isDebug()
{
// TODO: Implement isDebug() method.
}
public function setDecorated(bool $decorated)
{
// TODO: Implement setDecorated() method.
}
public function isDecorated()
{
// TODO: Implement isDecorated() method.
}
public function setFormatter(OutputFormatterInterface $formatter)
{
// TODO: Implement setFormatter() method.
}
public function getFormatter()
{
// TODO: Implement getFormatter() method.
}
}