Skip to content

fix: remove wrong return type declaration from Package\Manager::getPackageStoreUrls

Henning Leutz requested to merge dev into master

The method returns an array by default. In case of an error a boolean (false) is returned. Therefore the return type decleration has to be omitted. With PHP 8.0 union return type (': boolean|array') could be used.

Merge request reports