Skip to content

Commit

Permalink
Fixed acquia#2220: Don't override Robo interactive.
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed Oct 31, 2017
1 parent 6cb44b8 commit 20d66eb
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/Robo/Tasks/DrushTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down Expand Up @@ -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.
*
Expand Down

0 comments on commit 20d66eb

Please sign in to comment.