1
0
Fork 0

change preProcess from private to public

I need to override the preProcess method from a child class.

The use case is related to package renaming in a private satis repository. I understand the implication for packagist (and other public repository) but keeping the root packageName cause problem when you need to rename a package.

I will override override the name assignation with this

```PHP

// use the main identifier if name is not present
$data['name'] = !isset($data['name']) ? $this->packageName : $data['name'];

```
pull/3383/head
mpoiriert 2014-10-30 09:19:10 -04:00
parent a309e1d89d
commit 2a4b125125
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ class VcsRepository extends ArrayRepository
}
}
private function preProcess(VcsDriverInterface $driver, array $data, $identifier)
protected function preProcess(VcsDriverInterface $driver, array $data, $identifier)
{
// keep the name of the main identifier for all packages
$data['name'] = $this->packageName ?: $data['name'];