Browse Source

Clarity fix

Jordi Boggiano 12 năm trước cách đây
mục cha
commit
704b7a655f
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/Composer/Command/ShowCommand.php

+ 2 - 2
src/Composer/Command/ShowCommand.php

@@ -172,8 +172,8 @@ EOT
 
         if ($package->getSupport()) {
             $output->writeln("\n<info>support</info>");
-            foreach ($package->getSupport() as $type => $url) {
-                $output->writeln('<comment>' . $type . '</comment> : '.$url);
+            foreach ($package->getSupport() as $type => $value) {
+                $output->writeln('<comment>' . $type . '</comment> : '.$value);
             }
         }