Home
last modified time | relevance | path

Searched refs:isTtySupported (Results 1 – 3 of 3) sorted by relevance

/plugin/combo/vendor/symfony/process/
H A DProcess.php1063 if ($tty && !self::isTtySupported()) {
1256 public static function isTtySupported(): bool function in Symfony\\Component\\Process\\Process
1258 static $isTtySupported;
1260 if (null === $isTtySupported) {
1261 …$isTtySupported = (bool) @proc_open('echo 1 >/dev/null', [['file', '/dev/tty', 'r'], ['file', '/de…
1264 return $isTtySupported;
H A DCHANGELOG.md42 * added the `Process::isTtySupported()` method that allows to check for TTY support
/plugin/jplayer/vendor/symfony/process/
DProcess.php1030 static $isTtySupported;
1032 if (null === $isTtySupported) {
1033 …$isTtySupported = (bool) @proc_open('echo 1 >/dev/null', [['file', '/dev/tty', 'r'], ['file', '/de…
1036 if (!$isTtySupported) {