Explorar o código

Add exception when json files can not be read

Jordi Boggiano %!s(int64=14) %!d(string=hai) anos
pai
achega
17286e993c
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      src/Composer/Json/JsonFile.php

+ 3 - 0
src/Composer/Json/JsonFile.php

@@ -58,6 +58,9 @@ class JsonFile
         ));
 
         $json = file_get_contents($this->path, false, $context);
+        if (!$json) {
+            throw new \RuntimeException('Could not read '.$this->path.', you are probably offline');
+        }
 
         return static::parseJson($json);
     }