Browse Source

Handle array candidates in whatProvides

Nils Adermann 11 years ago
parent
commit
aa74818fe0
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/Composer/DependencyResolver/Pool.php

+ 4 - 1
src/Composer/DependencyResolver/Pool.php

@@ -268,7 +268,10 @@ class Pool
         $nameMatch = false;
 
         foreach ($candidates as $candidate) {
-            if ($this->whitelist !== null && !isset($this->whitelist[$candidate->getId()])) {
+            if ($this->whitelist !== null && (
+                (is_array($candidate) && isset($candidate['id']) && !isset($this->whitelist[$candidate['id']])) ||
+                (is_object($candidate) && !isset($this->whitelist[$candidate->getId()]))
+            )) {
                 continue;
             }
             switch ($this->match($candidate, $name, $constraint)) {