1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-10 17:12:51 +00:00
This commit is contained in:
Christophe Coevoet 2012-01-16 22:11:31 +01:00
parent 1fdb7aef56
commit bd1d20b2c9
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ class ArrayRepository implements RepositoryInterface
// normalize name
$name = strtolower($name);
return array_filter($this->getPackages(), function(PackageInterface $package) use ($name) {
return array_filter($this->getPackages(), function (PackageInterface $package) use ($name) {
return $package->getName() === $name;
});
}