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