Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.1 KiB

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\helpers;
use yii\helpers\Console;
/**
* Console helper stub for STDIN/STDOUT/STDERR replacement
*
* @author Pavel Dovlatov <mysterydragon@yandex.ru>
*/
class ConsoleStub extends Console
{
/**
* @var resource input stream
*/
public static $inputStream = \STDIN;
/**
* @var resource output stream
*/
public static $outputStream = \STDOUT;
/**
* @var resource error stream
*/
public static $errorStream = \STDERR;
/**
*{@inheritdoc}
*/
public static function stdin($raw = false)
{
return $raw ? fgets(self::$inputStream) : rtrim(fgets(self::$inputStream), PHP_EOL);
}
/**
*{@inheritdoc}
*/
public static function stdout($string)
{
return fwrite(self::$outputStream, $string);
}
/**
*{@inheritdoc}
*/
public static function stderr($string)
{
return fwrite(self::$errorStream, $string);
}
}