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 22999f7 commit 9df998cCopy full SHA for 9df998c
src/Symfony/Component/Console/Helper/DialogHelper.php
@@ -20,14 +20,20 @@
20
* @author Fabien Potencier <fabien@symfony.com>
21
*
22
* @deprecated Deprecated since version 2.5, to be removed in 3.0.
23
- * Use the question helper instead.
+ * Use {@link \Symfony\Component\Console\Helper\QuestionHelper} instead.
24
*/
25
class DialogHelper extends InputAwareHelper
26
{
27
private $inputStream;
28
private static $shell;
29
private static $stty;
30
31
+ function __construct()
32
+ {
33
+ trigger_error( 'DialogHelper is deprecated since version 2.5 and will be removed in 3.0. Use QuestionHelper instead.', E_USER_DEPRECATED );
34
+
35
+ parent::__construct();
36
+ }
37
/**
38
* Asks the user to select a value.
39
0 commit comments