Skip to content

Commit

Permalink
Fixed #2220: Don't override Robo interactive. (#2224)
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell authored Oct 31, 2017
1 parent 8d5d921 commit 35c7434
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 35c7434

Please sign in to comment.