1
0
Fork 0

Fix invalid access to private prop

pull/8669/head
Jordi Boggiano 2020-02-13 22:19:32 +01:00
parent 2d8a8ed7e3
commit 71005091f0
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class InstalledRepository extends CompositeRepository
public function getRepoName()
{
return 'installed repo ('.implode(', ', array_map(function ($repo) { return $repo->getRepoName(); }, $this->repositories)).')';
return 'installed repo ('.implode(', ', array_map(function ($repo) { return $repo->getRepoName(); }, $this->getRepositories())).')';
}
/**