fix: remove wrong return type declaration from Package\Manager::getPackageStoreUrls
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.