public function configure()
 {
     if (!$this->isEnabled()) {
         return;
     }
     $default = $this->settings->getDefaultValueFor('phpSrcPath', array('src'));
     $this->settings['phpSrcPath'] = $this->multiplePathHelper->askPaths("At which paths is the PHP source code located?", implode(',', $default));
 }
 /**
  * @return mixed
  */
 protected function askForPathsToTests()
 {
     $default = $this->settings->getDefaultValueFor('phpTestsPath', 'tests');
     return $this->multiplePathHelper->askPaths("On what paths can the PHPUnit tests be found?", $default);
 }