* more cs fixes
parent
c6653f0711
commit
434f10f2d7
|
@ -85,7 +85,7 @@ class SvnDownloader extends VcsDownloader
|
||||||
protected function execute($command, SvnUtil $util)
|
protected function execute($command, SvnUtil $util)
|
||||||
{
|
{
|
||||||
$status = $this->process->execute($command, $output);
|
$status = $this->process->execute($command, $output);
|
||||||
if ($status == 0) {
|
if (0 === $status) {
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@ class SvnDriver extends VcsDriver
|
||||||
$output
|
$output
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($status == 0) {
|
if (0 === $status) {
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue