ComposerRepository: avoid notice if includes do not provide a sha1
parent
b847c4dc3a
commit
773635e355
|
@ -637,7 +637,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
|
||||||
|
|
||||||
if (isset($data['includes'])) {
|
if (isset($data['includes'])) {
|
||||||
foreach ($data['includes'] as $include => $metadata) {
|
foreach ($data['includes'] as $include => $metadata) {
|
||||||
if ($this->cache->sha1($include) === $metadata['sha1']) {
|
if (isset($metadata['sha1']) && $this->cache->sha1($include) === $metadata['sha1']) {
|
||||||
$includedData = json_decode($this->cache->read($include), true);
|
$includedData = json_decode($this->cache->read($include), true);
|
||||||
} else {
|
} else {
|
||||||
$includedData = $this->fetchFile($include);
|
$includedData = $this->fetchFile($include);
|
||||||
|
|
Loading…
Reference in New Issue