From 20d66eb29b8cae42ddd4d2118a10e4aa52786ebc Mon Sep 17 00:00:00 2001 From: Dane Powell Date: Mon, 30 Oct 2017 19:03:28 -0700 Subject: [PATCH] Fixed #2220: Don't override Robo interactive. --- src/Robo/Tasks/DrushTask.php | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/Robo/Tasks/DrushTask.php b/src/Robo/Tasks/DrushTask.php index 7cea77b95..42faa99ee 100644 --- a/src/Robo/Tasks/DrushTask.php +++ b/src/Robo/Tasks/DrushTask.php @@ -47,13 +47,6 @@ class DrushTask extends CommandStack { */ protected $uri; - /** - * Indicates if the command should be interactive or use default values. - * - * @var string|bool - */ - protected $interactive; - /** * Indicates if the command output should be verbose. * @@ -154,23 +147,6 @@ public function dir($dir) { return $this; } - /** - * Indicates if the command should be interactive. - * - * @param string|bool $interactive - * - * @return $this - */ - public function interactive($interactive) { - if ($interactive === "") { - $this->interactive = $interactive; - } - else { - $this->interactive = $this->mixedToBool($interactive); - } - return $this; - } - /** * Indicates if the command output should be verbose. *