forked from friendica/php-json-ld
Fix wrong concatenation operator
This commit is contained in:
parent
dafc68dc1e
commit
3249d1f595
10
jsonld.php
10
jsonld.php
|
@ -474,7 +474,7 @@ function jsonld_default_secure_document_loader($url)
|
||||||
$result = @file_get_contents($url, false, $context);
|
$result = @file_get_contents($url, false, $context);
|
||||||
if ($result === false) {
|
if ($result === false) {
|
||||||
throw new JsonLdException(
|
throw new JsonLdException(
|
||||||
'Could not retrieve a JSON-LD document from the URL: ' + $url, 'jsonld.LoadDocumentError', 'loading document failed');
|
'Could not retrieve a JSON-LD document from the URL: ' . $url, 'jsonld.LoadDocumentError', 'loading document failed');
|
||||||
}
|
}
|
||||||
|
|
||||||
$link_header = [];
|
$link_header = [];
|
||||||
|
@ -2468,7 +2468,7 @@ class JsonLdProcessor
|
||||||
foreach ($items as $item) {
|
foreach ($items as $item) {
|
||||||
if (self::_isValue($item) || self::_isList($item)) {
|
if (self::_isValue($item) || self::_isList($item)) {
|
||||||
throw new JsonLdException(
|
throw new JsonLdException(
|
||||||
'Invalid JSON-LD syntax; "@reverse" value must not be a ' +
|
'Invalid JSON-LD syntax; "@reverse" value must not be a ' .
|
||||||
'@value or an @list.', 'jsonld.SyntaxError', 'invalid reverse property value', ['value' => $expanded_value]);
|
'@value or an @list.', 'jsonld.SyntaxError', 'invalid reverse property value', ['value' => $expanded_value]);
|
||||||
}
|
}
|
||||||
self::addValue(
|
self::addValue(
|
||||||
|
@ -2548,7 +2548,7 @@ class JsonLdProcessor
|
||||||
foreach ($expanded_value as $item) {
|
foreach ($expanded_value as $item) {
|
||||||
if (self::_isValue($item) || self::_isList($item)) {
|
if (self::_isValue($item) || self::_isList($item)) {
|
||||||
throw new JsonLdException(
|
throw new JsonLdException(
|
||||||
'Invalid JSON-LD syntax; "@reverse" value must not be a ' +
|
'Invalid JSON-LD syntax; "@reverse" value must not be a ' .
|
||||||
'@value or an @list.', 'jsonld.SyntaxError', 'invalid reverse property value', ['value' => $expanded_value]);
|
'@value or an @list.', 'jsonld.SyntaxError', 'invalid reverse property value', ['value' => $expanded_value]);
|
||||||
}
|
}
|
||||||
self::addValue(
|
self::addValue(
|
||||||
|
@ -4906,7 +4906,7 @@ class JsonLdProcessor
|
||||||
if (property_exists($value, '@reverse')) {
|
if (property_exists($value, '@reverse')) {
|
||||||
if (property_exists($value, '@id')) {
|
if (property_exists($value, '@id')) {
|
||||||
throw new JsonLdException(
|
throw new JsonLdException(
|
||||||
'Invalid JSON-LD syntax; a @reverse term definition must not ' +
|
'Invalid JSON-LD syntax; a @reverse term definition must not ' .
|
||||||
'contain @id.', 'jsonld.SyntaxError', 'invalid reverse property', ['context' => $local_ctx]);
|
'contain @id.', 'jsonld.SyntaxError', 'invalid reverse property', ['context' => $local_ctx]);
|
||||||
}
|
}
|
||||||
$reverse = $value->{'@reverse'};
|
$reverse = $value->{'@reverse'};
|
||||||
|
@ -5024,7 +5024,7 @@ class JsonLdProcessor
|
||||||
if ($mapping->reverse && $container !== '@index' &&
|
if ($mapping->reverse && $container !== '@index' &&
|
||||||
$container !== '@set' && $container !== null) {
|
$container !== '@set' && $container !== null) {
|
||||||
throw new JsonLdException(
|
throw new JsonLdException(
|
||||||
'Invalid JSON-LD syntax; @context @container value for a @reverse ' +
|
'Invalid JSON-LD syntax; @context @container value for a @reverse ' .
|
||||||
'type definition must be @index or @set.', 'jsonld.SyntaxError', 'invalid reverse property', ['context' => $local_ctx]);
|
'type definition must be @index or @set.', 'jsonld.SyntaxError', 'invalid reverse property', ['context' => $local_ctx]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue