/**
  * SetupTeardownCommand constructor.
  *
  * @param null   $name
  * @param bool   $tearsDown
  * @param bool   $setsUp
  * @param string $description
  */
 public function __construct($name, $tearsDown = true, $setsUp = true, $description = '')
 {
     $this->setDescription($description);
     parent::__construct($name);
     $this->tearsDown = $tearsDown;
     $this->setsUp = $setsUp;
 }