public function Process::isTty in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/process/Process.php \Symfony\Component\Process\Process::isTty()
Checks if the TTY mode is enabled.
Return value
bool true if the TTY mode is enabled, false otherwise
File
- vendor/
symfony/ process/ Process.php, line 942
Class
- Process
- Process is a thin wrapper around proc_* functions to easily start independent PHP processes.
Namespace
Symfony\Component\ProcessCode
public function isTty() {
return $this->tty;
}