瀏覽代碼

Fixed unused variables.

Per Bernhardt 13 年之前
父節點
當前提交
b0d2897af3
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/Composer/Repository/Vcs/GitDriver.php

+ 2 - 2
src/Composer/Repository/Vcs/GitDriver.php

@@ -46,7 +46,7 @@ class GitDriver implements VcsDriverInterface
         if (null === $this->rootIdentifier) {
         if (null === $this->rootIdentifier) {
             $this->rootIdentifier = 'master';
             $this->rootIdentifier = 'master';
             exec(sprintf('cd %s && git branch --no-color -r', escapeshellarg($this->tmpDir)), $output);
             exec(sprintf('cd %s && git branch --no-color -r', escapeshellarg($this->tmpDir)), $output);
-            foreach ($output as $key => $branch) {
+            foreach ($output as $branch) {
                 if ($branch && preg_match('{/HEAD +-> +[^/]+/(\S+)}', $branch, $match)) {
                 if ($branch && preg_match('{/HEAD +-> +[^/]+/(\S+)}', $branch, $match)) {
                     $this->rootIdentifier = $match[1];
                     $this->rootIdentifier = $match[1];
                     break;
                     break;
@@ -132,7 +132,7 @@ class GitDriver implements VcsDriverInterface
             $branches = array();
             $branches = array();
 
 
             exec(sprintf('cd %s && git branch --no-color -rv', escapeshellarg($this->tmpDir)), $output);
             exec(sprintf('cd %s && git branch --no-color -rv', escapeshellarg($this->tmpDir)), $output);
-            foreach ($output as $key => $branch) {
+            foreach ($output as $branch) {
                 if ($branch && !preg_match('{^ *[^/]+/HEAD }', $branch)) {
                 if ($branch && !preg_match('{^ *[^/]+/HEAD }', $branch)) {
                     preg_match('{^ *[^/]+/(\S+) *([a-f0-9]+) .*$}', $branch, $match);
                     preg_match('{^ *[^/]+/(\S+) *([a-f0-9]+) .*$}', $branch, $match);
                     $branches[$match[1]] = $match[2];
                     $branches[$match[1]] = $match[2];