for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LF\EnvDiff\IO;
use Composer\IO\IOInterface as ComposerIOInterface;
/**
* @codeCoverageIgnore
*/
class ComposerIO implements IOInterface
{
/** @var ComposerIOInterface */
private $io;
* ComposerIO constructor.
*
* @param ComposerIOInterface $io
public function __construct(ComposerIOInterface $io)
$this->io = $io;
}
* {@inheritdoc}
public function write($message)
$this->io->write($message);
public function isInteractive()
return $this->io->isInteractive();
public function ask($question, $default = null)
return $this->ask($question, $default);