mirror of
https://github.com/composer/composer
synced 2025-05-10 17:12:51 +00:00
Marked getRootAliasesPerPackage as static
This commit is contained in:
parent
0d369c87bc
commit
643852a2b0
1 changed files with 2 additions and 2 deletions
|
@ -92,7 +92,7 @@ class RepositorySet
|
|||
*/
|
||||
public function __construct($minimumStability = 'stable', array $stabilityFlags = array(), array $rootAliases = array(), array $rootReferences = array(), array $rootRequires = array())
|
||||
{
|
||||
$this->rootAliases = $this->getRootAliasesPerPackage($rootAliases);
|
||||
$this->rootAliases = self::getRootAliasesPerPackage($rootAliases);
|
||||
$this->rootReferences = $rootReferences;
|
||||
|
||||
$this->acceptableStabilities = array();
|
||||
|
@ -286,7 +286,7 @@ class RepositorySet
|
|||
return $this->createPool($request, new NullIO());
|
||||
}
|
||||
|
||||
private function getRootAliasesPerPackage(array $aliases)
|
||||
private static function getRootAliasesPerPackage(array $aliases)
|
||||
{
|
||||
$normalizedAliases = array();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue