We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7744e8f commit 5a1dc67Copy full SHA for 5a1dc67
src/Symfony/Component/Process/CHANGELOG.md
@@ -1,6 +1,11 @@
1
CHANGELOG
2
=========
3
4
+4.1.0
5
+-----
6
+
7
+ * added the `Process::isTtySupported()` method that allows to check for TTY support
8
9
4.0.0
10
-----
11
src/Symfony/Component/Process/Process.php
@@ -1164,10 +1164,8 @@ public function checkTimeout()
1164
1165
/**
1166
* Returns whether TTY is supported on the current operating system.
1167
- *
1168
- * @return bool
1169
*/
1170
- public static function isTtySupported()
+ public static function isTtySupported(): bool
1171
{
1172
static $isTtySupported;
1173
0 commit comments