public static function fromFile(string $filename) : ManifestDocument { if (!is_file($filename)) { throw new ManifestDocumentException(sprintf('File "%s" not found', $filename)); } return self::fromString(file_get_contents($filename)); }