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\InputStream;
use Webmozart\Console\Api\IO\InputStream;
/**
* An input stream that returns nothing.
* @since 1.0
* @author Bernhard Schussek <[email protected]>
class NullInputStream implements InputStream
{
* {@inheritdoc}
public function read($length)
}
public function readLine($length = null)
public function close()
public function isClosed()
return false;