Skip to content

Commit 6e8eef7

Browse files
fix(hydra): hydra context changed (#6710)
Co-authored-by: Valentin Dassonville <[email protected]>
1 parent 60d6d24 commit 6e8eef7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ContextBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ private function getResourceContextWithShortname(string $resourceClass, int $ref
185185
}
186186

187187
if (false === ($this->defaultContext[self::HYDRA_CONTEXT_HAS_PREFIX] ?? true)) {
188-
return ['http://www.w3.org/ns/hydra/context.jsonld', $context];
188+
return [ContextBuilderInterface::HYDRA_CONTEXT, $context];
189189
}
190190

191191
return $context;

ContextBuilderInterface.php

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*/
2424
interface ContextBuilderInterface
2525
{
26+
public const HYDRA_CONTEXT = 'http://www.w3.org/ns/hydra/context.jsonld';
2627
public const HYDRA_NS = 'http://www.w3.org/ns/hydra/core#';
2728
public const JSONLD_NS = 'http://www.w3.org/ns/json-ld#';
2829
public const RDF_NS = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';

0 commit comments

Comments
 (0)