for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the webmozart/console package.
*
* (c) Bernhard Schussek <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Webmozart\Console\IO\OutputStream;
use Webmozart\Console\Api\IO\OutputStream;
/**
* An output stream that ignores all output.
* @since 1.0
* @author Bernhard Schussek <[email protected]>
class NullOutputStream implements OutputStream
{
* {@inheritdoc}
public function write($string)
}
public function flush()
public function supportsAnsi()
return false;
public function close()
public function isClosed()