Make all params non-optional
parent
fdb35a6a06
commit
4ea6b1ef55
|
@ -742,7 +742,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
|
||||||
* @param string $name package name (must be lowercased already)
|
* @param string $name package name (must be lowercased already)
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
public function isVersionAcceptable(array $acceptableStabilities = null, array $stabilityFlags = null, $constraint, $name, $versionData)
|
public function isVersionAcceptable(array $acceptableStabilities, array $stabilityFlags, $constraint, $name, $versionData)
|
||||||
{
|
{
|
||||||
$versions = array($versionData['version_normalized']);
|
$versions = array($versionData['version_normalized']);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue