Cleaned coding style

This commit is contained in:
a.cianfarani 2013-08-02 12:12:17 +02:00
parent 287a2b3632
commit 97d279cabd

View file

@ -14,8 +14,7 @@ class Atoum implements \PHPCI\Plugin
if (isset($options['executable'])) {
$this->executable = $options['executable'];
}
else {
} else {
$this->executable = PHPCI_BIN_DIR.'atoum';
}
@ -51,7 +50,7 @@ class Atoum implements \PHPCI\Plugin
$status = true;
exec($cmd, $output);
if (!empty($output) && count(preg_grep("/error/i",$output)) > 0) {
if (!empty($output) && count(preg_grep("/error/i", $output)) > 0) {
$status = false;
$this->phpci->log($output, ' ');
}