ソースを参照

* more cs fixes

till 13 年 前
コミット
434f10f2d7

+ 1 - 1
src/Composer/Downloader/SvnDownloader.php

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

+ 1 - 1
src/Composer/Repository/Vcs/SvnDriver.php

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