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
parent
a309e1d89d
commit
2a4b125125
|
@ -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
|
// keep the name of the main identifier for all packages
|
||||||
$data['name'] = $this->packageName ?: $data['name'];
|
$data['name'] = $this->packageName ?: $data['name'];
|
||||||
|
|
Loading…
Reference in New Issue