Correction the function getComposerInformation in SvnDriver.php. (#10681)
Sometimes the getBaseComposerInformation had an exception so we write in the cache a string value but the funtion want to return null or Array value. Now we write a empty string value if it happenedpull/10684/head
parent
40425795f7
commit
986a260d1c
|
@ -148,7 +148,7 @@ class SvnDriver extends VcsDriver
|
||||||
throw $e;
|
throw $e;
|
||||||
}
|
}
|
||||||
// remember a not-existent composer.json
|
// remember a not-existent composer.json
|
||||||
$composer = '';
|
$composer = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->shouldCache($identifier)) {
|
if ($this->shouldCache($identifier)) {
|
||||||
|
|
Loading…
Reference in New Issue