You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$content = trim(($document->getObject($value->objectNumber) ?? thrownewInvalidArgumentException(sprintf('Object with nr %d not found', $value->objectNumber)))
54
-
->getStream()->toString()),
55
-
) ?? thrownewParseFailureException(sprintf('Unable to parse content "%s" of referenced object %d as %s', $content, $value->objectNumber, $expectedValueType));
$content = ($document->getObject($value->objectNumber) ?? thrownewInvalidArgumentException(sprintf('Object with nr %d not found', $value->objectNumber)))
?? thrownewParseFailureException(sprintf('Unable to parse content "%s" of referenced object %d as %s', $content->toString(), $value->objectNumber, $expectedValueType));
?? thrownewParseFailureException(sprintf('Unable to parse content "%s" of referenced object %d as %s', $content->toString(), $value->objectNumber, $expectedValueType));
0 commit comments