isTty() public method

Checks if the TTY mode is enabled.
public isTty ( ) : boolean
return boolean true if the TTY mode is enabled, false otherwise
示例#1
0
文件: UnixPipes.php 项目: VicDeo/poc
 public static function create(Process $process, $input)
 {
     return new static($process->isTty(), $process->isPty(), $input, $process->isOutputDisabled());
 }