1
0
Fork 0

* more cs fixes

pull/410/head
till 2012-03-23 16:32:46 +01:00
parent c6653f0711
commit 434f10f2d7
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -82,7 +82,7 @@ class SvnDriver extends VcsDriver
$output
);
if ($status == 0) {
if (0 === $status) {
return $output;
}