Symfony\Component\Process\Process::isTty PHP 메소드

isTty() 공개 메소드

Checks if the TTY mode is enabled.
public isTty ( ) : boolean
리턴 boolean true if the TTY mode is enabled, false otherwise
    public function isTty()
    {
        return $this->tty;
    }

Usage Example

예제 #1
0
파일: UnixPipes.php 프로젝트: VicDeo/poc
 public static function create(Process $process, $input)
 {
     return new static($process->isTty(), $process->isPty(), $input, $process->isOutputDisabled());
 }