isTty() public method

Checks if the TTY mode is enabled.
public isTty ( ) : boolean
return boolean true if the TTY mode is enabled, false otherwise
Esempio n. 1
0
 public static function create(Process $process, $input)
 {
     return new static($process->isTty(), $process->isPty(), $input, $process->isOutputDisabled());
 }