diff --git a/core/modules/jsonapi/jsonapi.api.php b/core/modules/jsonapi/jsonapi.api.php index c011e77f79754cff23c8c86807ed3fb8978b6c7a..2d09100e092102e51265214e37b5cdf1e7908183 100644 --- a/core/modules/jsonapi/jsonapi.api.php +++ b/core/modules/jsonapi/jsonapi.api.php @@ -63,7 +63,7 @@ * * @see https://github.com/json-api/json-api/pull/1268 * @see https://github.com/json-api/json-api/pull/1311 - * @see https://www.drupal.org/project/jsonapi/issues/2955020 + * @see https://www.drupal.org/project/drupal/issues/2955020 * * By implementing revision support as a profile, the JSON:API module should be * maximally compatible with other systems. @@ -117,7 +117,7 @@ * It is not yet possible to request a collection of revisions. This is still * under development in issue [#3009588]. * - * @see https://www.drupal.org/project/jsonapi/issues/3009588. + * @see https://www.drupal.org/project/drupal/issues/3009588. * @see https://tools.ietf.org/html/rfc5829 * @see https://www.drupal.org/docs/8/modules/jsonapi/revisions * diff --git a/core/modules/jsonapi/src/Access/EntityAccessChecker.php b/core/modules/jsonapi/src/Access/EntityAccessChecker.php index d3d4fa06e0a1fa8de41033b8e0baee979eec14ea..1a5b3ea19ce657f111611dfb3e7f2e8966eaa502 100644 --- a/core/modules/jsonapi/src/Access/EntityAccessChecker.php +++ b/core/modules/jsonapi/src/Access/EntityAccessChecker.php @@ -31,7 +31,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class EntityAccessChecker { @@ -238,7 +238,7 @@ public function checkEntityAccess(EntityInterface $entity, $operation, AccountIn * * @todo: remove when a generic revision access API exists in Drupal core, and * also remove the injected "node" and "media" services. - * @see https://www.drupal.org/project/jsonapi/issues/2992833#comment-12818386 + * @see https://www.drupal.org/project/drupal/issues/2992833#comment-12818386 */ protected function checkRevisionViewAccess(EntityInterface $entity, AccountInterface $account) { assert($entity instanceof RevisionableInterface); @@ -257,7 +257,7 @@ protected function checkRevisionViewAccess(EntityInterface $entity, AccountInter default: $reason = 'Only node and media revisions are supported by JSON:API.'; - $reason .= ' For context, see https://www.drupal.org/project/jsonapi/issues/2992833#comment-12818258.'; + $reason .= ' For context, see https://www.drupal.org/project/drupal/issues/2992833#comment-12818258.'; $reason .= ' To contribute, see https://www.drupal.org/project/drupal/issues/2350939 and https://www.drupal.org/project/drupal/issues/2809177.'; $access = AccessResult::neutral($reason); } diff --git a/core/modules/jsonapi/src/Access/RelationshipFieldAccess.php b/core/modules/jsonapi/src/Access/RelationshipFieldAccess.php index ff0e10374584c350b65e1685fa69046824c6b796..244dee3e575b9988e8c72d45eb3eda970bf8106a 100644 --- a/core/modules/jsonapi/src/Access/RelationshipFieldAccess.php +++ b/core/modules/jsonapi/src/Access/RelationshipFieldAccess.php @@ -20,7 +20,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class RelationshipFieldAccess implements AccessInterface { diff --git a/core/modules/jsonapi/src/Access/TemporaryQueryGuard.php b/core/modules/jsonapi/src/Access/TemporaryQueryGuard.php index dd3b0a8e3d124508aeea5541915b7c50ab0399fa..a919611cc0f16ee625f07b40575dbedfdfab0453 100644 --- a/core/modules/jsonapi/src/Access/TemporaryQueryGuard.php +++ b/core/modules/jsonapi/src/Access/TemporaryQueryGuard.php @@ -32,7 +32,7 @@ * @see https://www.drupal.org/project/drupal/issues/2809177 * @see https://www.drupal.org/project/drupal/issues/777578 * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class TemporaryQueryGuard { diff --git a/core/modules/jsonapi/src/Context/FieldResolver.php b/core/modules/jsonapi/src/Context/FieldResolver.php index ab410e9b93c7f115f2bf980e9d920f9d72fc4620..9790d4804b4d68c50f85850e7b949105afa3d200 100644 --- a/core/modules/jsonapi/src/Context/FieldResolver.php +++ b/core/modules/jsonapi/src/Context/FieldResolver.php @@ -67,7 +67,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class FieldResolver { @@ -531,7 +531,7 @@ protected function getInternalName($field_name, array $resource_types) { */ protected function isMemberFilterable($external_name, array $resource_types) { return array_reduce($resource_types, function ($carry, ResourceType $resource_type) use ($external_name) { - // @todo: remove the next line and uncomment the following one in https://www.drupal.org/project/jsonapi/issues/3017047. + // @todo: remove the next line and uncomment the following one in https://www.drupal.org/project/drupal/issues/3017047. return $carry ?: $external_name === 'id' || $resource_type->isFieldEnabled($resource_type->getInternalName($external_name)); /*return $carry ?: in_array($external_name, ['id', 'type']) || $resource_type->isFieldEnabled($resource_type->getInternalName($external_name));*/ }, FALSE); @@ -633,7 +633,7 @@ protected static function getDataReferencePropertyName(array $candidate_definiti $prior_parts = array_slice($unresolved_path_parts, 0, count($unresolved_path_parts) - count($remaining_parts)); return implode('.', array_merge($prior_parts, [$reference_name], $remaining_parts)); }, $unique_reference_names); - // @todo Add test coverage for this in https://www.drupal.org/project/jsonapi/issues/2971281 + // @todo Add test coverage for this in https://www.drupal.org/project/drupal/issues/2971281 $message = sprintf('Ambiguous path. Try one of the following: %s, in place of the given path: %s', implode(', ', $choices), implode('.', $unresolved_path_parts)); $cacheability = (new CacheableMetadata())->addCacheContexts(['url.query_args:filter', 'url.query_args:sort']); throw new CacheableBadRequestHttpException($cacheability, $message); diff --git a/core/modules/jsonapi/src/Controller/EntityResource.php b/core/modules/jsonapi/src/Controller/EntityResource.php index 4bd865bc0a2f4a0e9e060fd7c605edcbaa294f17..30d322774ee7129c27a7e4f48c5dca4fefcf77db 100644 --- a/core/modules/jsonapi/src/Controller/EntityResource.php +++ b/core/modules/jsonapi/src/Controller/EntityResource.php @@ -65,7 +65,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class EntityResource { @@ -307,7 +307,7 @@ public function createIndividual(ResourceType $resource_type, Request $request) */ public function patchIndividual(ResourceType $resource_type, EntityInterface $entity, Request $request) { if ($entity instanceof RevisionableInterface && !($entity->isLatestRevision() && $entity->isDefaultRevision())) { - throw new BadRequestHttpException('Updating a resource object that has a working copy is not yet supported. See https://www.drupal.org/project/jsonapi/issues/2795279.'); + throw new BadRequestHttpException('Updating a resource object that has a working copy is not yet supported. See https://www.drupal.org/project/drupal/issues/2795279.'); } $parsed_entity = $this->deserialize($resource_type, $request, JsonApiDocumentTopLevel::class); @@ -408,7 +408,7 @@ public function getCollection(ResourceType $resource_type, Request $request) { catch (\LogicException $e) { // Ensure good DX when an entity query involves a config entity type. // For example: getting users with a particular role, which is a config - // entity type: https://www.drupal.org/project/jsonapi/issues/2959445. + // entity type: https://www.drupal.org/project/drupal/issues/2959445. // @todo Remove the message parsing in https://www.drupal.org/project/drupal/issues/3028967. if (strpos($e->getMessage(), 'Getting the base fields is not supported for entity type') === 0) { preg_match('/entity type (.*)\./', $e->getMessage(), $matches); diff --git a/core/modules/jsonapi/src/Controller/EntryPoint.php b/core/modules/jsonapi/src/Controller/EntryPoint.php index a564580523cdb1b4af5d2415b94af5ee85728e89..29a4276572b12a99abe408bd8c8cd0231a61118b 100644 --- a/core/modules/jsonapi/src/Controller/EntryPoint.php +++ b/core/modules/jsonapi/src/Controller/EntryPoint.php @@ -23,7 +23,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class EntryPoint extends ControllerBase { diff --git a/core/modules/jsonapi/src/Controller/FileUpload.php b/core/modules/jsonapi/src/Controller/FileUpload.php index b4a5800ca2671f2ba5f895572ba8ff3d41e057cf..c11244a7992d3a9488ef9e78b4781a4ca157ec9d 100644 --- a/core/modules/jsonapi/src/Controller/FileUpload.php +++ b/core/modules/jsonapi/src/Controller/FileUpload.php @@ -34,7 +34,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class FileUpload { @@ -179,7 +179,7 @@ public function handleFileUploadForNewResource(Request $request, ResourceType $r throw new UnprocessableEntityHttpException($message); } - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $self_link = new Link(new CacheableMetadata(), Url::fromRoute('jsonapi.file--file.individual', ['entity' => $file->uuid()]), 'self'); /* $self_link = new Link(new CacheableMetadata(), $this->entity->toUrl('jsonapi'), ['self']); */ $links = new LinkCollection(['self' => $self_link]); diff --git a/core/modules/jsonapi/src/DependencyInjection/Compiler/RegisterSerializationClassesCompilerPass.php b/core/modules/jsonapi/src/DependencyInjection/Compiler/RegisterSerializationClassesCompilerPass.php index 7c7d21e146dc0333cd170be1b4d04f5fce4273e4..7587cb324290c43ccbbff25dfe13ab6c3c89a80c 100644 --- a/core/modules/jsonapi/src/DependencyInjection/Compiler/RegisterSerializationClassesCompilerPass.php +++ b/core/modules/jsonapi/src/DependencyInjection/Compiler/RegisterSerializationClassesCompilerPass.php @@ -17,7 +17,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class RegisterSerializationClassesCompilerPass extends DrupalRegisterSerializationClassesCompilerPass { diff --git a/core/modules/jsonapi/src/Encoder/JsonEncoder.php b/core/modules/jsonapi/src/Encoder/JsonEncoder.php index 2f7f04f6f28e53460f68a567f5e54a748cf51b3a..fdc83ff2b4f010d15fa564ef52d0ea396465ec0c 100644 --- a/core/modules/jsonapi/src/Encoder/JsonEncoder.php +++ b/core/modules/jsonapi/src/Encoder/JsonEncoder.php @@ -10,7 +10,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class JsonEncoder extends SerializationJsonEncoder { diff --git a/core/modules/jsonapi/src/Entity/EntityValidationTrait.php b/core/modules/jsonapi/src/Entity/EntityValidationTrait.php index 8dca70b2732ca3f5af020564bcd49737da87647b..99291254cad26d307ad027a05b15fcb347d9a580 100644 --- a/core/modules/jsonapi/src/Entity/EntityValidationTrait.php +++ b/core/modules/jsonapi/src/Entity/EntityValidationTrait.php @@ -12,7 +12,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ trait EntityValidationTrait { diff --git a/core/modules/jsonapi/src/EventSubscriber/DefaultExceptionSubscriber.php b/core/modules/jsonapi/src/EventSubscriber/DefaultExceptionSubscriber.php index abefad4a8606beb802b34d9a4c07e8cc82dd468e..e5d3d56ead6fcbc69c5ee32abb313fe6bdbf4858 100644 --- a/core/modules/jsonapi/src/EventSubscriber/DefaultExceptionSubscriber.php +++ b/core/modules/jsonapi/src/EventSubscriber/DefaultExceptionSubscriber.php @@ -18,7 +18,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class DefaultExceptionSubscriber extends SerializationDefaultExceptionSubscriber { diff --git a/core/modules/jsonapi/src/EventSubscriber/JsonApiRequestValidator.php b/core/modules/jsonapi/src/EventSubscriber/JsonApiRequestValidator.php index 051fefff73e105cbce45e3570f96a3161162191a..db33f307e14542419184d2c36a649588a5c5caf6 100644 --- a/core/modules/jsonapi/src/EventSubscriber/JsonApiRequestValidator.php +++ b/core/modules/jsonapi/src/EventSubscriber/JsonApiRequestValidator.php @@ -16,7 +16,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class JsonApiRequestValidator implements EventSubscriberInterface { diff --git a/core/modules/jsonapi/src/EventSubscriber/ResourceResponseSubscriber.php b/core/modules/jsonapi/src/EventSubscriber/ResourceResponseSubscriber.php index 414ae766b1d6dbe9e6e14ebff63ad4f54ff89408..508253fccc1708f53b4ff0c7a9edf87e5f1be1f6 100644 --- a/core/modules/jsonapi/src/EventSubscriber/ResourceResponseSubscriber.php +++ b/core/modules/jsonapi/src/EventSubscriber/ResourceResponseSubscriber.php @@ -19,7 +19,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * This is 99% identical to: diff --git a/core/modules/jsonapi/src/EventSubscriber/ResourceResponseValidator.php b/core/modules/jsonapi/src/EventSubscriber/ResourceResponseValidator.php index 178a784dca459b96ff31fb4514825071f85db8e0..16250682e95671217cc86593c11d6ed35b31b684 100644 --- a/core/modules/jsonapi/src/EventSubscriber/ResourceResponseValidator.php +++ b/core/modules/jsonapi/src/EventSubscriber/ResourceResponseValidator.php @@ -20,7 +20,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\rest\EventSubscriber\ResourceResponseSubscriber diff --git a/core/modules/jsonapi/src/Exception/EntityAccessDeniedHttpException.php b/core/modules/jsonapi/src/Exception/EntityAccessDeniedHttpException.php index 3365326aac52fb66e9305a12c51c4f31f293b25c..74ab245e5114002bfe3a6ae1047b360cf2e42cfa 100644 --- a/core/modules/jsonapi/src/Exception/EntityAccessDeniedHttpException.php +++ b/core/modules/jsonapi/src/Exception/EntityAccessDeniedHttpException.php @@ -18,7 +18,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class EntityAccessDeniedHttpException extends CacheableAccessDeniedHttpException implements ResourceIdentifierInterface { @@ -71,7 +71,7 @@ public function __construct($entity, AccessResultInterface $entity_access, $poin $error['reason'] = $entity_access->getReason(); } $this->error = $error; - // @todo: remove this ternary operation in https://www.drupal.org/project/jsonapi/issues/2997594. + // @todo: remove this ternary operation in https://www.drupal.org/project/drupal/issues/2997594. $this->resourceIdentifier = $entity ? ResourceIdentifier::fromEntity($entity) : NULL; } diff --git a/core/modules/jsonapi/src/Exception/UnprocessableHttpEntityException.php b/core/modules/jsonapi/src/Exception/UnprocessableHttpEntityException.php index 95e496779e48057a0a8eaa5d735c4f664c7fefa9..b9d5a6f58389ae5bb93b39134d7956cf077c1dba 100644 --- a/core/modules/jsonapi/src/Exception/UnprocessableHttpEntityException.php +++ b/core/modules/jsonapi/src/Exception/UnprocessableHttpEntityException.php @@ -18,7 +18,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class UnprocessableHttpEntityException extends HttpException { diff --git a/core/modules/jsonapi/src/IncludeResolver.php b/core/modules/jsonapi/src/IncludeResolver.php index d8a283df0d68f8f5e6c6da11bebebbec34880eae..ad0e36ca40562a1d823a29e8bd607d6002a50560 100644 --- a/core/modules/jsonapi/src/IncludeResolver.php +++ b/core/modules/jsonapi/src/IncludeResolver.php @@ -24,7 +24,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class IncludeResolver { diff --git a/core/modules/jsonapi/src/JsonApiResource/Data.php b/core/modules/jsonapi/src/JsonApiResource/Data.php index 57dd0ad675a1233de4070e893f5ba45796b00b78..61cf72ca4068fee19aae5ef5000024ea14ffd789 100644 --- a/core/modules/jsonapi/src/JsonApiResource/Data.php +++ b/core/modules/jsonapi/src/JsonApiResource/Data.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ abstract class Data implements \IteratorAggregate, \Countable { diff --git a/core/modules/jsonapi/src/JsonApiResource/ErrorCollection.php b/core/modules/jsonapi/src/JsonApiResource/ErrorCollection.php index 2396641abdb837c9a0393d6f8e7e65901e5cdef4..d43febdd6e38e2f24e26752e82bb4b576cabff7c 100644 --- a/core/modules/jsonapi/src/JsonApiResource/ErrorCollection.php +++ b/core/modules/jsonapi/src/JsonApiResource/ErrorCollection.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * (The spec says the top-level `data` and `errors` members MUST NOT coexist.) diff --git a/core/modules/jsonapi/src/JsonApiResource/IncludedData.php b/core/modules/jsonapi/src/JsonApiResource/IncludedData.php index a1566641a65708061224f55045f321158bed086a..e0938a1f9a6d702fd5ab5a463fb037e202f47e92 100644 --- a/core/modules/jsonapi/src/JsonApiResource/IncludedData.php +++ b/core/modules/jsonapi/src/JsonApiResource/IncludedData.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class IncludedData extends ResourceObjectData { diff --git a/core/modules/jsonapi/src/JsonApiResource/JsonApiDocumentTopLevel.php b/core/modules/jsonapi/src/JsonApiResource/JsonApiDocumentTopLevel.php index 5fc7291f9622958d0dba12a7396d6b905ea4a252..df58c32c50ed687e00f035aa2b209dfc2da51f7a 100644 --- a/core/modules/jsonapi/src/JsonApiResource/JsonApiDocumentTopLevel.php +++ b/core/modules/jsonapi/src/JsonApiResource/JsonApiDocumentTopLevel.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see http://jsonapi.org/format/#document-top-level diff --git a/core/modules/jsonapi/src/JsonApiResource/LabelOnlyResourceObject.php b/core/modules/jsonapi/src/JsonApiResource/LabelOnlyResourceObject.php index 157b9de1f2ab822e74818736f8c989d99d685ab9..1beaa23056edd836eb2ee079f7bf7410d2057726 100644 --- a/core/modules/jsonapi/src/JsonApiResource/LabelOnlyResourceObject.php +++ b/core/modules/jsonapi/src/JsonApiResource/LabelOnlyResourceObject.php @@ -12,7 +12,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ final class LabelOnlyResourceObject extends ResourceObject { diff --git a/core/modules/jsonapi/src/JsonApiResource/Link.php b/core/modules/jsonapi/src/JsonApiResource/Link.php index 1a33b59e1f64f95a139707671f513565b57c2788..5c1953c1f52c5e425735dea9244e2b810fe4b827 100644 --- a/core/modules/jsonapi/src/JsonApiResource/Link.php +++ b/core/modules/jsonapi/src/JsonApiResource/Link.php @@ -15,7 +15,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see https://tools.ietf.org/html/rfc8288 diff --git a/core/modules/jsonapi/src/JsonApiResource/LinkCollection.php b/core/modules/jsonapi/src/JsonApiResource/LinkCollection.php index 098f580b71e9389d243c68ec2394a56eb032cf0f..3215888693ceaebff64b143de30b3c13a884994d 100644 --- a/core/modules/jsonapi/src/JsonApiResource/LinkCollection.php +++ b/core/modules/jsonapi/src/JsonApiResource/LinkCollection.php @@ -10,7 +10,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ final class LinkCollection implements \IteratorAggregate { diff --git a/core/modules/jsonapi/src/JsonApiResource/NullIncludedData.php b/core/modules/jsonapi/src/JsonApiResource/NullIncludedData.php index 46b4e6ab5bbd8583f41245ad9e4f89dbf6a64074..6d5da0c1c6ac9d0438f0858ef3a6823a941821d3 100644 --- a/core/modules/jsonapi/src/JsonApiResource/NullIncludedData.php +++ b/core/modules/jsonapi/src/JsonApiResource/NullIncludedData.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class NullIncludedData extends IncludedData { diff --git a/core/modules/jsonapi/src/JsonApiResource/OmittedData.php b/core/modules/jsonapi/src/JsonApiResource/OmittedData.php index 1e57348e0ecc2c492ffd012cbbaa185e22f0eb26..77fd81ce9e6709deca88522df8e197321f59fcea 100644 --- a/core/modules/jsonapi/src/JsonApiResource/OmittedData.php +++ b/core/modules/jsonapi/src/JsonApiResource/OmittedData.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class OmittedData extends ResourceObjectData { diff --git a/core/modules/jsonapi/src/JsonApiResource/Relationship.php b/core/modules/jsonapi/src/JsonApiResource/Relationship.php index 6e89907a985838b2ba81bc983bf6bcf81cf54436..b5a383ea89c95cb4cc924feb03fbc58ee44f48b8 100644 --- a/core/modules/jsonapi/src/JsonApiResource/Relationship.php +++ b/core/modules/jsonapi/src/JsonApiResource/Relationship.php @@ -16,7 +16,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class Relationship implements TopLevelDataInterface { diff --git a/core/modules/jsonapi/src/JsonApiResource/RelationshipData.php b/core/modules/jsonapi/src/JsonApiResource/RelationshipData.php index e4bfa8a2c351354e2873c200494b5e00c6549ed3..2c2aec507831b0ab5d96832ce73bd675e83cbaf8 100644 --- a/core/modules/jsonapi/src/JsonApiResource/RelationshipData.php +++ b/core/modules/jsonapi/src/JsonApiResource/RelationshipData.php @@ -10,7 +10,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class RelationshipData extends Data { diff --git a/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php b/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php index b6bca7e3b44e9bb84882ca9dea4fef74041d0307..20ca39a85657c5712e34b8300ec4845776024444 100644 --- a/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php +++ b/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php @@ -28,12 +28,12 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see http://jsonapi.org/format/#document-resource-object-relationships * @see https://github.com/json-api/json-api/pull/1156#issuecomment-325377995 - * @see https://www.drupal.org/project/jsonapi/issues/2864680 + * @see https://www.drupal.org/project/drupal/issues/2864680 */ class ResourceIdentifier implements ResourceIdentifierInterface { diff --git a/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifierInterface.php b/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifierInterface.php index 872da7dc0636f893d2938764bdf452fdae681744..f2e5e6c42db6661446736eea41218c3a9d5235aa 100644 --- a/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifierInterface.php +++ b/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifierInterface.php @@ -13,7 +13,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ interface ResourceIdentifierInterface { diff --git a/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifierTrait.php b/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifierTrait.php index e4942cfb8faa57374bb33789618b8030bb2bc672..b7b65586e5bb2a03a49e650d7bcfddb6df04bd10 100644 --- a/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifierTrait.php +++ b/core/modules/jsonapi/src/JsonApiResource/ResourceIdentifierTrait.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\JsonApiResource\ResourceIdentifierInterface diff --git a/core/modules/jsonapi/src/JsonApiResource/ResourceObject.php b/core/modules/jsonapi/src/JsonApiResource/ResourceObject.php index cce7d45a31c7c82e4d85442abbcf13579eb52f9a..34f64ef839d2e84618c1a8adff5cac3bfa9ed091 100644 --- a/core/modules/jsonapi/src/JsonApiResource/ResourceObject.php +++ b/core/modules/jsonapi/src/JsonApiResource/ResourceObject.php @@ -27,7 +27,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class ResourceObject implements CacheableDependencyInterface, ResourceIdentifierInterface { diff --git a/core/modules/jsonapi/src/JsonApiResource/ResourceObjectData.php b/core/modules/jsonapi/src/JsonApiResource/ResourceObjectData.php index 5fadfb0356b35d2c5e3378f17d914aed4f0df429..be630e96f8f90e4a7afdb815cbb15beccb1a3649 100644 --- a/core/modules/jsonapi/src/JsonApiResource/ResourceObjectData.php +++ b/core/modules/jsonapi/src/JsonApiResource/ResourceObjectData.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class ResourceObjectData extends Data implements TopLevelDataInterface { diff --git a/core/modules/jsonapi/src/JsonApiResource/TopLevelDataInterface.php b/core/modules/jsonapi/src/JsonApiResource/TopLevelDataInterface.php index a01da15682e36a6d0b5b6a2dc68a04d586db1c6d..558548f3ca236626dac3ae1ea34441bbc928082e 100644 --- a/core/modules/jsonapi/src/JsonApiResource/TopLevelDataInterface.php +++ b/core/modules/jsonapi/src/JsonApiResource/TopLevelDataInterface.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ interface TopLevelDataInterface { diff --git a/core/modules/jsonapi/src/JsonApiSpec.php b/core/modules/jsonapi/src/JsonApiSpec.php index 956dac6c00129e9e07b7ebdfa0822f2397198019..274b3f4deb1736b5df2ca68314cbf0cfc20b785d 100644 --- a/core/modules/jsonapi/src/JsonApiSpec.php +++ b/core/modules/jsonapi/src/JsonApiSpec.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see http://jsonapi.org/format diff --git a/core/modules/jsonapi/src/JsonapiServiceProvider.php b/core/modules/jsonapi/src/JsonapiServiceProvider.php index 4696ed567f80fdbc51caecfb2cce1e896e6e20ac..e3b0f6d0cc1afc13417145637a74d4080b2dc62f 100644 --- a/core/modules/jsonapi/src/JsonapiServiceProvider.php +++ b/core/modules/jsonapi/src/JsonapiServiceProvider.php @@ -14,7 +14,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class JsonapiServiceProvider implements ServiceModifierInterface, ServiceProviderInterface { diff --git a/core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php b/core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php index 39288abac973dc7f1bd3700426e6ef9fab7d5f9a..de74db67aa558706377dcda6328e42daa772105b 100644 --- a/core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ final class ConfigEntityDenormalizer extends EntityDenormalizerBase { diff --git a/core/modules/jsonapi/src/Normalizer/ContentEntityDenormalizer.php b/core/modules/jsonapi/src/Normalizer/ContentEntityDenormalizer.php index 287f2cb14050022770130c5a1d03573df07bb1ad..aa56f8ab9ce7f5b0278ac0d327b7fb5b77308dad 100644 --- a/core/modules/jsonapi/src/Normalizer/ContentEntityDenormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/ContentEntityDenormalizer.php @@ -12,7 +12,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ final class ContentEntityDenormalizer extends EntityDenormalizerBase { diff --git a/core/modules/jsonapi/src/Normalizer/EntityAccessDeniedHttpExceptionNormalizer.php b/core/modules/jsonapi/src/Normalizer/EntityAccessDeniedHttpExceptionNormalizer.php index 0d18dcdea05ad324da37e4d29ac8bbfd6525590e..5dd2b6e98831338c827e836fd023a4d574e8750b 100644 --- a/core/modules/jsonapi/src/Normalizer/EntityAccessDeniedHttpExceptionNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/EntityAccessDeniedHttpExceptionNormalizer.php @@ -16,7 +16,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see http://jsonapi.org/format/#error-objects diff --git a/core/modules/jsonapi/src/Normalizer/EntityDenormalizerBase.php b/core/modules/jsonapi/src/Normalizer/EntityDenormalizerBase.php index 65f25995bf5930c48a8b35371ec328ad8707c8c7..edfeaa19fd061601621dd24b729dfa1b335284b8 100644 --- a/core/modules/jsonapi/src/Normalizer/EntityDenormalizerBase.php +++ b/core/modules/jsonapi/src/Normalizer/EntityDenormalizerBase.php @@ -15,7 +15,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ abstract class EntityDenormalizerBase extends NormalizerBase implements DenormalizerInterface { diff --git a/core/modules/jsonapi/src/Normalizer/EntityReferenceFieldNormalizer.php b/core/modules/jsonapi/src/Normalizer/EntityReferenceFieldNormalizer.php index c79d56ae1ae89e3e380c307d644f08480cf669b3..de46d4d36960effe0ac99a93074d487f870b61aa 100644 --- a/core/modules/jsonapi/src/Normalizer/EntityReferenceFieldNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/EntityReferenceFieldNormalizer.php @@ -19,7 +19,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class EntityReferenceFieldNormalizer extends FieldNormalizer { diff --git a/core/modules/jsonapi/src/Normalizer/FieldItemNormalizer.php b/core/modules/jsonapi/src/Normalizer/FieldItemNormalizer.php index 183fac07306423eba3017d606152cab7494efc15..f3afb429927ea88762d5dfa3bd48a39c69df1835 100644 --- a/core/modules/jsonapi/src/Normalizer/FieldItemNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/FieldItemNormalizer.php @@ -20,7 +20,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class FieldItemNormalizer extends NormalizerBase implements DenormalizerInterface { diff --git a/core/modules/jsonapi/src/Normalizer/FieldNormalizer.php b/core/modules/jsonapi/src/Normalizer/FieldNormalizer.php index b33677c17867b4418fa61ad1fe854c27186c6980..74b78db50e034f4bfc7149fa65e9dae986398e48 100644 --- a/core/modules/jsonapi/src/Normalizer/FieldNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/FieldNormalizer.php @@ -15,7 +15,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class FieldNormalizer extends NormalizerBase implements DenormalizerInterface { diff --git a/core/modules/jsonapi/src/Normalizer/HttpExceptionNormalizer.php b/core/modules/jsonapi/src/Normalizer/HttpExceptionNormalizer.php index 461381581515d9e15fb55023ce67cd553a42b7a1..0b91b4d92f39e7a7374f2d17e8d6bb7ffaf5b871 100644 --- a/core/modules/jsonapi/src/Normalizer/HttpExceptionNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/HttpExceptionNormalizer.php @@ -14,7 +14,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see http://jsonapi.org/format/#error-objects @@ -112,7 +112,7 @@ protected function buildErrorObjects(HttpException $exception) { * URL pointing to the specific RFC-2616 section. Or NULL if it is an HTTP * status code that is defined in another RFC. * - * @see https://www.drupal.org/project/jsonapi/issues/2832211#comment-11826234 + * @see https://www.drupal.org/project/drupal/issues/2832211#comment-11826234 * * @internal */ diff --git a/core/modules/jsonapi/src/Normalizer/JsonApiDocumentTopLevelNormalizer.php b/core/modules/jsonapi/src/Normalizer/JsonApiDocumentTopLevelNormalizer.php index b6abaf7eaa80f2d00ec791a097d6bb8699c716fe..ae5cbe0dc341aba9802a7f202663155bc8503e64 100644 --- a/core/modules/jsonapi/src/Normalizer/JsonApiDocumentTopLevelNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/JsonApiDocumentTopLevelNormalizer.php @@ -28,7 +28,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\JsonApiResource\JsonApiDocumentTopLevel @@ -217,7 +217,7 @@ public function normalize($object, $format = NULL, array $context = []) { * @return \Drupal\jsonapi\Normalizer\Value\CacheableNormalization * The normalized document. * - * @todo: refactor this to use CacheableNormalization::aggregate in https://www.drupal.org/project/jsonapi/issues/3036284. + * @todo: refactor this to use CacheableNormalization::aggregate in https://www.drupal.org/project/drupal/issues/3036284. */ protected function normalizeErrorDocument(JsonApiDocumentTopLevel $document, $format, array $context = []) { $normalized_values = array_map(function (HttpExceptionInterface $exception) use ($format, $context) { @@ -245,7 +245,7 @@ protected function normalizeErrorDocument(JsonApiDocumentTopLevel $document, $fo * @return \Drupal\jsonapi\Normalizer\Value\CacheableNormalization|\Drupal\jsonapi\Normalizer\Value\CacheableOmission * The normalized omissions. * - * @todo: refactor this to use link collections in https://www.drupal.org/project/jsonapi/issues/3036279. + * @todo: refactor this to use link collections in https://www.drupal.org/project/drupal/issues/3036279. */ protected function normalizeOmissionsLinks(OmittedData $omissions, $format, array $context = []) { $normalized_omissions = array_map(function (HttpExceptionInterface $exception) use ($format, $context) { diff --git a/core/modules/jsonapi/src/Normalizer/LinkCollectionNormalizer.php b/core/modules/jsonapi/src/Normalizer/LinkCollectionNormalizer.php index a883389d391c85e0bd982b9bde0bedbd88a00549..2c3f5b71de4665fc548e21e40939704d3cc334ad 100644 --- a/core/modules/jsonapi/src/Normalizer/LinkCollectionNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/LinkCollectionNormalizer.php @@ -24,7 +24,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class LinkCollectionNormalizer extends NormalizerBase { diff --git a/core/modules/jsonapi/src/Normalizer/NormalizerBase.php b/core/modules/jsonapi/src/Normalizer/NormalizerBase.php index 241feac691e4616f175a107b87c5c736623e703e..37f639bdb7482c70871fb9ab5371d05d197197d3 100644 --- a/core/modules/jsonapi/src/Normalizer/NormalizerBase.php +++ b/core/modules/jsonapi/src/Normalizer/NormalizerBase.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ abstract class NormalizerBase extends SerializationNormalizerBase { diff --git a/core/modules/jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php b/core/modules/jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php index 40458e2d47c46d98cf99c930a85f4b38e3bd523f..a0ccd56c4bc106e6737a4e81299c729c50bfc4dc 100644 --- a/core/modules/jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php @@ -18,7 +18,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class ResourceIdentifierNormalizer extends NormalizerBase implements DenormalizerInterface { diff --git a/core/modules/jsonapi/src/Normalizer/ResourceObjectNormalizer.php b/core/modules/jsonapi/src/Normalizer/ResourceObjectNormalizer.php index 10a5e4cca56b8e2f91074713b0f2589cb517dfec..8a21f420202b970731fcfd3acdd6f852c9b7b38c 100644 --- a/core/modules/jsonapi/src/Normalizer/ResourceObjectNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/ResourceObjectNormalizer.php @@ -17,7 +17,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class ResourceObjectNormalizer extends NormalizerBase { diff --git a/core/modules/jsonapi/src/Normalizer/UnprocessableHttpEntityExceptionNormalizer.php b/core/modules/jsonapi/src/Normalizer/UnprocessableHttpEntityExceptionNormalizer.php index 35834dd789d92fd04764d8756968029d938ab3af..aca1088623b22ac4dffc669df1b78ef8137ece09 100644 --- a/core/modules/jsonapi/src/Normalizer/UnprocessableHttpEntityExceptionNormalizer.php +++ b/core/modules/jsonapi/src/Normalizer/UnprocessableHttpEntityExceptionNormalizer.php @@ -16,7 +16,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see http://jsonapi.org/format/#error-objects diff --git a/core/modules/jsonapi/src/Normalizer/Value/CacheableNormalization.php b/core/modules/jsonapi/src/Normalizer/Value/CacheableNormalization.php index 538422284e4c694da6802c0b919a62db87c75567..fbc77e89b18c6827de83a958dd74bb15501bd511 100644 --- a/core/modules/jsonapi/src/Normalizer/Value/CacheableNormalization.php +++ b/core/modules/jsonapi/src/Normalizer/Value/CacheableNormalization.php @@ -13,7 +13,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class CacheableNormalization implements CacheableDependencyInterface { diff --git a/core/modules/jsonapi/src/Normalizer/Value/CacheableOmission.php b/core/modules/jsonapi/src/Normalizer/Value/CacheableOmission.php index 9a8310dc44445efb28a0b9760eb9c0ac1c7ff7d2..e3a290723a8907dadf6d0c32385c3598479a2b31 100644 --- a/core/modules/jsonapi/src/Normalizer/Value/CacheableOmission.php +++ b/core/modules/jsonapi/src/Normalizer/Value/CacheableOmission.php @@ -10,7 +10,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ final class CacheableOmission extends CacheableNormalization { diff --git a/core/modules/jsonapi/src/Normalizer/Value/HttpExceptionNormalizerValue.php b/core/modules/jsonapi/src/Normalizer/Value/HttpExceptionNormalizerValue.php index 83cf3beb023bfe38bf97de00b5e848046ee2e45d..67a61bfd8049abe33532404388e92f02aaa1c54e 100644 --- a/core/modules/jsonapi/src/Normalizer/Value/HttpExceptionNormalizerValue.php +++ b/core/modules/jsonapi/src/Normalizer/Value/HttpExceptionNormalizerValue.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class HttpExceptionNormalizerValue extends CacheableNormalization {} diff --git a/core/modules/jsonapi/src/ParamConverter/EntityUuidConverter.php b/core/modules/jsonapi/src/ParamConverter/EntityUuidConverter.php index 1b4ef83e436cbadb6dcdb918aeedf52662fbf796..3cae9f8e9d5d945d62817f2d88d558e1cbd7969e 100644 --- a/core/modules/jsonapi/src/ParamConverter/EntityUuidConverter.php +++ b/core/modules/jsonapi/src/ParamConverter/EntityUuidConverter.php @@ -17,7 +17,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\Core\ParamConverter\EntityConverter diff --git a/core/modules/jsonapi/src/ParamConverter/ResourceTypeConverter.php b/core/modules/jsonapi/src/ParamConverter/ResourceTypeConverter.php index ab4569b9d5498499d2b3d130f9b414f3f67a7fa0..d0dba4dd1fd1906cbe8515e95e51e703410861d5 100644 --- a/core/modules/jsonapi/src/ParamConverter/ResourceTypeConverter.php +++ b/core/modules/jsonapi/src/ParamConverter/ResourceTypeConverter.php @@ -12,7 +12,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class ResourceTypeConverter implements ParamConverterInterface { diff --git a/core/modules/jsonapi/src/Query/EntityCondition.php b/core/modules/jsonapi/src/Query/EntityCondition.php index 3e2d460b2c72d54560e763263d8bfe353bd2e389..dea06c132d2f2258a21053eb859214704cd01bda 100644 --- a/core/modules/jsonapi/src/Query/EntityCondition.php +++ b/core/modules/jsonapi/src/Query/EntityCondition.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class EntityCondition { diff --git a/core/modules/jsonapi/src/Query/EntityConditionGroup.php b/core/modules/jsonapi/src/Query/EntityConditionGroup.php index fcefe2a278dc981db4c3d56bbef5d6ae1c2481cb..8a529bf312e36dac015cc8dfda9a1aa428c6aea0 100644 --- a/core/modules/jsonapi/src/Query/EntityConditionGroup.php +++ b/core/modules/jsonapi/src/Query/EntityConditionGroup.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class EntityConditionGroup { diff --git a/core/modules/jsonapi/src/Query/Filter.php b/core/modules/jsonapi/src/Query/Filter.php index 2ca708b433ff192357976f1c23c83b4c1743233f..ab134317c4bcf32f16e7aca53d4ff2e789e359f0 100644 --- a/core/modules/jsonapi/src/Query/Filter.php +++ b/core/modules/jsonapi/src/Query/Filter.php @@ -12,7 +12,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class Filter { diff --git a/core/modules/jsonapi/src/Query/OffsetPage.php b/core/modules/jsonapi/src/Query/OffsetPage.php index 70a752ef2c3ae92ae5df87b82b2ad91aec5f1c24..988cc69a508f7eb2b19de20d874aa38fbc2bfb6c 100644 --- a/core/modules/jsonapi/src/Query/OffsetPage.php +++ b/core/modules/jsonapi/src/Query/OffsetPage.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class OffsetPage { diff --git a/core/modules/jsonapi/src/Query/Sort.php b/core/modules/jsonapi/src/Query/Sort.php index c127a9230af00a24c8b0ab8cfb53e43e8e70d128..3f01638e91675a9aeb9ca345053e3bde0479fb13 100644 --- a/core/modules/jsonapi/src/Query/Sort.php +++ b/core/modules/jsonapi/src/Query/Sort.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class Sort { diff --git a/core/modules/jsonapi/src/ResourceResponse.php b/core/modules/jsonapi/src/ResourceResponse.php index b73165d1706a1414a51931874a5421967acee884..cf6ddac7a992832d47274bb8cf3539a740c98d34 100644 --- a/core/modules/jsonapi/src/ResourceResponse.php +++ b/core/modules/jsonapi/src/ResourceResponse.php @@ -17,7 +17,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\rest\ModifiedResourceResponse diff --git a/core/modules/jsonapi/src/ResourceType/ResourceType.php b/core/modules/jsonapi/src/ResourceType/ResourceType.php index 436949536dc338ef09c56ea24b17c1ff4bf82a62..56101846151b8a620ebb716b746e22d0b2380f68 100644 --- a/core/modules/jsonapi/src/ResourceType/ResourceType.php +++ b/core/modules/jsonapi/src/ResourceType/ResourceType.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\ResourceType\ResourceTypeRepository diff --git a/core/modules/jsonapi/src/ResourceType/ResourceTypeAttribute.php b/core/modules/jsonapi/src/ResourceType/ResourceTypeAttribute.php index 19f71c192f6983d396106015018ace09beed64b1..f606516c9c0a94ca113c7a581b2bb195cbe33356 100644 --- a/core/modules/jsonapi/src/ResourceType/ResourceTypeAttribute.php +++ b/core/modules/jsonapi/src/ResourceType/ResourceTypeAttribute.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\ResourceType\ResourceTypeRepository diff --git a/core/modules/jsonapi/src/ResourceType/ResourceTypeField.php b/core/modules/jsonapi/src/ResourceType/ResourceTypeField.php index 987f4963843e63dfe4a3a57b008f4d7106c0094d..c6a1922f8e85b5c4c857e5dc9277a6a5996b77c8 100644 --- a/core/modules/jsonapi/src/ResourceType/ResourceTypeField.php +++ b/core/modules/jsonapi/src/ResourceType/ResourceTypeField.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\ResourceType\ResourceTypeRepository diff --git a/core/modules/jsonapi/src/ResourceType/ResourceTypeRelationship.php b/core/modules/jsonapi/src/ResourceType/ResourceTypeRelationship.php index 8e782a527c4b3cee8b40e64ae3e903fa5f1565f2..2ae37bd698fa3407dc0b12b8678162bcabd1da34 100644 --- a/core/modules/jsonapi/src/ResourceType/ResourceTypeRelationship.php +++ b/core/modules/jsonapi/src/ResourceType/ResourceTypeRelationship.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\ResourceType\ResourceTypeRepository diff --git a/core/modules/jsonapi/src/ResourceType/ResourceTypeRepository.php b/core/modules/jsonapi/src/ResourceType/ResourceTypeRepository.php index 84aa71864c19694d066eba440f4fad8428ba245b..c2d306d4b9f181da96d481edd5699fa05aec20a0 100644 --- a/core/modules/jsonapi/src/ResourceType/ResourceTypeRepository.php +++ b/core/modules/jsonapi/src/ResourceType/ResourceTypeRepository.php @@ -33,7 +33,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\ResourceType\ResourceType diff --git a/core/modules/jsonapi/src/ResourceType/ResourceTypeRepositoryInterface.php b/core/modules/jsonapi/src/ResourceType/ResourceTypeRepositoryInterface.php index 6468aaff068fcb28c82375d70a9c6232c5d00898..8a66abf5a5bafab4e6ccc8a9720e8f7f17b95f68 100644 --- a/core/modules/jsonapi/src/ResourceType/ResourceTypeRepositoryInterface.php +++ b/core/modules/jsonapi/src/ResourceType/ResourceTypeRepositoryInterface.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ interface ResourceTypeRepositoryInterface { diff --git a/core/modules/jsonapi/src/Revisions/InvalidVersionIdentifierException.php b/core/modules/jsonapi/src/Revisions/InvalidVersionIdentifierException.php index d30f4a8596248457878232a36b0598fbf84b830d..f56a3aa8d513c9d3ca1fad40f7c7b4c5ee333d28 100644 --- a/core/modules/jsonapi/src/Revisions/InvalidVersionIdentifierException.php +++ b/core/modules/jsonapi/src/Revisions/InvalidVersionIdentifierException.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class InvalidVersionIdentifierException extends \InvalidArgumentException {} diff --git a/core/modules/jsonapi/src/Revisions/NegotiatorBase.php b/core/modules/jsonapi/src/Revisions/NegotiatorBase.php index 0adc78afba6f1f3f3c700a5805096fa8f4c655a6..2253090353aeca2aba463c7391e96825b8b881b6 100644 --- a/core/modules/jsonapi/src/Revisions/NegotiatorBase.php +++ b/core/modules/jsonapi/src/Revisions/NegotiatorBase.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ abstract class NegotiatorBase implements VersionNegotiatorInterface { diff --git a/core/modules/jsonapi/src/Revisions/ResourceVersionRouteEnhancer.php b/core/modules/jsonapi/src/Revisions/ResourceVersionRouteEnhancer.php index 8da175894cec289b6ed523ea99d8eaadeb3325f9..bc7694fafb8c87c8e6787c98d0baca0ce6d0c09d 100644 --- a/core/modules/jsonapi/src/Revisions/ResourceVersionRouteEnhancer.php +++ b/core/modules/jsonapi/src/Revisions/ResourceVersionRouteEnhancer.php @@ -18,7 +18,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ final class ResourceVersionRouteEnhancer implements EnhancerInterface { @@ -103,7 +103,7 @@ public function enhance(array $defaults, Request $request) { /* Uncomment the next line and remove the following one when https://www.drupal.org/project/drupal/issues/3002352 lands in core. */ /* throw new CacheableHttpException($cacheability, 501, 'Resource versioning is not yet supported for this resource type.'); */ $message = 'JSON:API does not yet support resource versioning for this resource type.'; - $message .= ' For context, see https://www.drupal.org/project/jsonapi/issues/2992833#comment-12818258.'; + $message .= ' For context, see https://www.drupal.org/project/drupal/issues/2992833#comment-12818258.'; $message .= ' To contribute, see https://www.drupal.org/project/drupal/issues/2350939 and https://www.drupal.org/project/drupal/issues/2809177.'; throw new CacheableHttpException($cacheability, 501, $message, NULL, []); } diff --git a/core/modules/jsonapi/src/Revisions/VersionById.php b/core/modules/jsonapi/src/Revisions/VersionById.php index 4337d37528f8c772ac847523fa5e3f6436f45c08..36c9825d3a1f1206ed44b2f3a417bfed93730485 100644 --- a/core/modules/jsonapi/src/Revisions/VersionById.php +++ b/core/modules/jsonapi/src/Revisions/VersionById.php @@ -10,7 +10,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class VersionById extends NegotiatorBase implements VersionNegotiatorInterface { diff --git a/core/modules/jsonapi/src/Revisions/VersionByRel.php b/core/modules/jsonapi/src/Revisions/VersionByRel.php index f825b6533f92862ec1562a1fccfe6cacbdece96a..0033c1429a922749ed6d79bd9313aba5d61ed43f 100644 --- a/core/modules/jsonapi/src/Revisions/VersionByRel.php +++ b/core/modules/jsonapi/src/Revisions/VersionByRel.php @@ -11,7 +11,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class VersionByRel extends NegotiatorBase { diff --git a/core/modules/jsonapi/src/Revisions/VersionNegotiator.php b/core/modules/jsonapi/src/Revisions/VersionNegotiator.php index 157efa529fc27e41c8f4a790be592cb96e92e88b..76bd43f0f19b079acf1e090d5cc9f59fb646b307 100644 --- a/core/modules/jsonapi/src/Revisions/VersionNegotiator.php +++ b/core/modules/jsonapi/src/Revisions/VersionNegotiator.php @@ -13,7 +13,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\Revisions\VersionNegotiatorInterface diff --git a/core/modules/jsonapi/src/Revisions/VersionNegotiatorInterface.php b/core/modules/jsonapi/src/Revisions/VersionNegotiatorInterface.php index 03a9d8023d3f69f2ed6d371b037c6c2cb4ad0f25..a796468615902519c4b8e44d19ad80e11acddc19 100644 --- a/core/modules/jsonapi/src/Revisions/VersionNegotiatorInterface.php +++ b/core/modules/jsonapi/src/Revisions/VersionNegotiatorInterface.php @@ -10,7 +10,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php * * @see \Drupal\jsonapi\Revisions\VersionNegotiator diff --git a/core/modules/jsonapi/src/Revisions/VersionNotFoundException.php b/core/modules/jsonapi/src/Revisions/VersionNotFoundException.php index cd6fb4b60eb76a3594bcc091a04049a4468dbfc0..72d0e3834611a4385a55d6e25481ed996cc26c84 100644 --- a/core/modules/jsonapi/src/Revisions/VersionNotFoundException.php +++ b/core/modules/jsonapi/src/Revisions/VersionNotFoundException.php @@ -8,7 +8,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class VersionNotFoundException extends \InvalidArgumentException { diff --git a/core/modules/jsonapi/src/Routing/RouteEnhancer.php b/core/modules/jsonapi/src/Routing/RouteEnhancer.php index 0c3b1b477e6a67a819bf13052a3924570d09c6c0..1a663fa31b570c84c0e0e6ea2df07a92839ab125 100644 --- a/core/modules/jsonapi/src/Routing/RouteEnhancer.php +++ b/core/modules/jsonapi/src/Routing/RouteEnhancer.php @@ -12,7 +12,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class RouteEnhancer implements EnhancerInterface { diff --git a/core/modules/jsonapi/src/Routing/Routes.php b/core/modules/jsonapi/src/Routing/Routes.php index 7ba8338112cda74c007ab4a6038d4e3487f34879..77fd86751b066bdddec8c41397f4ae68df711e52 100644 --- a/core/modules/jsonapi/src/Routing/Routes.php +++ b/core/modules/jsonapi/src/Routing/Routes.php @@ -19,7 +19,7 @@ * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ class Routes implements ContainerInjectionInterface { diff --git a/core/modules/jsonapi/src/Serializer/Serializer.php b/core/modules/jsonapi/src/Serializer/Serializer.php index 67c07c473efdcb340bf00a6e809360c3faef2410..709cf770949c3f90aab4dfc799f4528ab335355b 100644 --- a/core/modules/jsonapi/src/Serializer/Serializer.php +++ b/core/modules/jsonapi/src/Serializer/Serializer.php @@ -12,12 +12,12 @@ * Backwards compatibility is in no way guaranteed and will almost certainly be * broken in the future. * - * @link https://www.drupal.org/project/jsonapi/issues/2923779#comment-12407443 + * @link https://www.drupal.org/project/drupal/issues/2923779#comment-12407443 * * @internal JSON:API maintains no PHP API since its API is the HTTP API. This * class may change at any time and this will break any dependencies on it. * - * @see https://www.drupal.org/project/jsonapi/issues/3032787 + * @see https://www.drupal.org/project/drupal/issues/3032787 * @see jsonapi.api.php */ final class Serializer extends SymfonySerializer { diff --git a/core/modules/jsonapi/tests/src/Functional/BlockContentTest.php b/core/modules/jsonapi/tests/src/Functional/BlockContentTest.php index e4a71d21affea2b06ecaabf7d3ddec1f92271696..9537227ccb25f7572cee5949cda652ab45ca3511 100644 --- a/core/modules/jsonapi/tests/src/Functional/BlockContentTest.php +++ b/core/modules/jsonapi/tests/src/Functional/BlockContentTest.php @@ -200,7 +200,7 @@ protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) { * {@inheritdoc} */ public function testRelated() { - $this->markTestSkipped('Remove this in https://www.drupal.org/project/jsonapi/issues/2940339'); + $this->markTestSkipped('Remove this in https://www.drupal.org/project/drupal/issues/2940339'); } /** diff --git a/core/modules/jsonapi/tests/src/Functional/CommentTest.php b/core/modules/jsonapi/tests/src/Functional/CommentTest.php index 085c0480c3e48fc92dae5fa65ef790694bf31b04..be7545835787ad667cba02e724d3b73b78532344 100644 --- a/core/modules/jsonapi/tests/src/Functional/CommentTest.php +++ b/core/modules/jsonapi/tests/src/Functional/CommentTest.php @@ -392,7 +392,7 @@ protected static function entityAccess(EntityInterface $entity, $operation, Acco * {@inheritdoc} */ public function testRelated() { - $this->markTestSkipped('Remove this in https://www.drupal.org/project/jsonapi/issues/2940339'); + $this->markTestSkipped('Remove this in https://www.drupal.org/project/drupal/issues/2940339'); } /** diff --git a/core/modules/jsonapi/tests/src/Functional/ConfigurableLanguageTest.php b/core/modules/jsonapi/tests/src/Functional/ConfigurableLanguageTest.php index 5c9097df54d3b24b2b2828bff2543f3d3231be2e..7bc857b0e92a99168d9b19a1620773a87f077297 100644 --- a/core/modules/jsonapi/tests/src/Functional/ConfigurableLanguageTest.php +++ b/core/modules/jsonapi/tests/src/Functional/ConfigurableLanguageTest.php @@ -117,10 +117,10 @@ protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) { /** * Test a GET request for a default config entity, which has a _core key. * - * @see https://www.drupal.org/project/jsonapi/issues/2915539 + * @see https://www.drupal.org/project/drupal/issues/2915539 */ public function testGetIndividualDefaultConfig() { - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute('jsonapi.configurable_language--configurable_language.individual', ['entity' => ConfigurableLanguage::load('en')->uuid()]); /* $url = ConfigurableLanguage::load('en')->toUrl('jsonapi'); */ diff --git a/core/modules/jsonapi/tests/src/Functional/ExternalNormalizersTest.php b/core/modules/jsonapi/tests/src/Functional/ExternalNormalizersTest.php index 01626f09b3f54e61ca64fe52a3fd06b51f83904c..3214ca43018b517b3098f64bd0e9aa4db3fc4d5a 100644 --- a/core/modules/jsonapi/tests/src/Functional/ExternalNormalizersTest.php +++ b/core/modules/jsonapi/tests/src/Functional/ExternalNormalizersTest.php @@ -145,7 +145,7 @@ public function testFormatAgnosticNormalizers($test_module, $expected_value_json $this->assertSame(static::VALUE_ORIGINAL, $denormalized_entity->field_test->value); // Asserts the expected JSON:API normalization. - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute('jsonapi.entity_test--entity_test.individual', ['entity' => $this->entity->uuid()]); // $url = $this->entity->toUrl('jsonapi'); $client = $this->getSession()->getDriver()->getClient()->getClient(); diff --git a/core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php b/core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php index 35379fa1f065fad94e0049cb84990ab7d298c93c..949da0a6a747b3002fe192f60eef90c64b123ce8 100644 --- a/core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php +++ b/core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php @@ -51,7 +51,7 @@ class JsonApiRegressionTest extends JsonApiFunctionalTestBase { /** * Ensure filtering on relationships works with bundle-specific target types. * - * @see https://www.drupal.org/project/jsonapi/issues/2953207 + * @see https://www.drupal.org/project/drupal/issues/2953207 */ public function testBundleSpecificTargetEntityTypeFromIssue2953207() { // Set up data model. @@ -87,7 +87,7 @@ public function testBundleSpecificTargetEntityTypeFromIssue2953207() { /** * Ensure deep nested include works on multi target entity type field. * - * @see https://www.drupal.org/project/jsonapi/issues/2973681 + * @see https://www.drupal.org/project/drupal/issues/2973681 */ public function testDeepNestedIncludeMultiTargetEntityTypeFieldFromIssue2973681() { // Set up data model. @@ -151,7 +151,7 @@ public function testDeepNestedIncludeMultiTargetEntityTypeFieldFromIssue2973681( /** * Ensure POST and PATCH works for bundle-less relationship routes. * - * @see https://www.drupal.org/project/jsonapi/issues/2976371 + * @see https://www.drupal.org/project/drupal/issues/2976371 */ public function testBundlelessRelationshipMutationFromIssue2973681() { $this->config('jsonapi.settings')->set('read_only', FALSE)->save(TRUE); @@ -202,7 +202,7 @@ public function testBundlelessRelationshipMutationFromIssue2973681() { /** * Ensures GETting terms works when multiple vocabularies exist. * - * @see https://www.drupal.org/project/jsonapi/issues/2977879 + * @see https://www.drupal.org/project/drupal/issues/2977879 */ public function testGetTermWhenMultipleVocabulariesExistFromIssue2977879() { // Set up data model. @@ -238,7 +238,7 @@ public function testGetTermWhenMultipleVocabulariesExistFromIssue2977879() { /** * Cannot PATCH an entity with dangling references in an ER field. * - * @see https://www.drupal.org/project/jsonapi/issues/2968972 + * @see https://www.drupal.org/project/drupal/issues/2968972 */ public function testDanglingReferencesInAnEntityReferenceFieldFromIssue2968972() { $this->config('jsonapi.settings')->set('read_only', FALSE)->save(TRUE); @@ -309,7 +309,7 @@ public function testDanglingReferencesInAnEntityReferenceFieldFromIssue2968972() /** * Ensures GETting node collection + hook_node_grants() implementations works. * - * @see https://www.drupal.org/project/jsonapi/issues/2984964 + * @see https://www.drupal.org/project/drupal/issues/2984964 */ public function testGetNodeCollectionWithHookNodeGrantsImplementationsFromIssue2984964() { // Set up data model. @@ -340,7 +340,7 @@ public function testGetNodeCollectionWithHookNodeGrantsImplementationsFromIssue2 /** * Cannot GET an entity with dangling references in an ER field. * - * @see https://www.drupal.org/project/jsonapi/issues/2984647 + * @see https://www.drupal.org/project/drupal/issues/2984647 */ public function testDanglingReferencesInAnEntityReferenceFieldFromIssue2984647() { // Set up data model. @@ -470,7 +470,7 @@ public function testDanglingReferencesInAnEntityReferenceFieldFromIssue2984647() * Adding a new relationship field should cause new routes to be immediately * regenerated. The site builder should not need to manually rebuild caches. * - * @see https://www.drupal.org/project/jsonapi/issues/2984886 + * @see https://www.drupal.org/project/drupal/issues/2984886 */ public function testThatRoutesAreRebuiltAfterDataModelChangesFromIssue2984886() { $user = $this->drupalCreateUser(['access content']); @@ -526,7 +526,7 @@ public function testThatRoutesAreRebuiltAfterDataModelChangesFromIssue2984886() /** * Ensures denormalizing relationships with aliased field names works. * - * @see https://www.drupal.org/project/jsonapi/issues/3007113 + * @see https://www.drupal.org/project/drupal/issues/3007113 * @see https://www.drupal.org/project/jsonapi_extras/issues/3004582#comment-12817261 */ public function testDenormalizeAliasedRelationshipFromIssue2953207() { @@ -584,7 +584,7 @@ public function testDenormalizeAliasedRelationshipFromIssue2953207() { /** * Ensures that Drupal's page cache is effective. * - * @see https://www.drupal.org/project/jsonapi/issues/3009596 + * @see https://www.drupal.org/project/drupal/issues/3009596 */ public function testPageCacheFromIssue3009596() { $anonymous_role = Role::load(RoleInterface::ANONYMOUS_ID); @@ -619,7 +619,7 @@ public function testPageCacheFromIssue3009596() { /** * Ensures that filtering by a sequential internal ID named 'id' is possible. * - * @see https://www.drupal.org/project/jsonapi/issues/3015759 + * @see https://www.drupal.org/project/drupal/issues/3015759 */ public function testFilterByIdFromIssue3015759() { // Set up data model. @@ -659,7 +659,7 @@ public function testFilterByIdFromIssue3015759() { /** * Ensures datetime fields are normalized using the correct timezone. * - * @see https://www.drupal.org/project/jsonapi/issues/2999438 + * @see https://www.drupal.org/project/drupal/issues/2999438 */ public function testPatchingDateTimeNormalizedWrongTimeZoneIssue3021194() { // Set up data model. @@ -708,7 +708,7 @@ public function testPatchingDateTimeNormalizedWrongTimeZoneIssue3021194() { /** * Ensures PATCHing datetime (both date-only & date+time) fields is possible. * - * @see https://www.drupal.org/project/jsonapi/issues/3021194 + * @see https://www.drupal.org/project/drupal/issues/3021194 */ public function testPatchingDateTimeFieldsFromIssue3021194() { $this->config('jsonapi.settings')->set('read_only', FALSE)->save(TRUE); @@ -791,7 +791,7 @@ public function testPatchingDateTimeFieldsFromIssue3021194() { /** * Ensure includes are respected even when POSTing. * - * @see https://www.drupal.org/project/jsonapi/issues/3026030 + * @see https://www.drupal.org/project/drupal/issues/3026030 */ public function testPostToIncludeUrlDoesNotReturnIncludeFromIssue3026030() { $this->config('jsonapi.settings')->set('read_only', FALSE)->save(TRUE); @@ -828,7 +828,7 @@ public function testPostToIncludeUrlDoesNotReturnIncludeFromIssue3026030() { /** * Ensure includes are respected even when PATCHing. * - * @see https://www.drupal.org/project/jsonapi/issues/3026030 + * @see https://www.drupal.org/project/drupal/issues/3026030 */ public function testPatchToIncludeUrlDoesNotReturnIncludeFromIssue3026030() { $this->config('jsonapi.settings')->set('read_only', FALSE)->save(TRUE); @@ -874,7 +874,7 @@ public function testPatchToIncludeUrlDoesNotReturnIncludeFromIssue3026030() { /** * Ensure `@FieldType=map` fields are normalized correctly. * - * @see https://www.drupal.org/project/jsonapi/issues/3040590 + * @see https://www.drupal.org/project/drupal/issues/3040590 */ public function testMapFieldTypeNormalizationFromIssue3040590() { $this->assertTrue($this->container->get('module_installer')->install(['entity_test'], TRUE), 'Installed modules.'); @@ -1254,8 +1254,8 @@ public function testLeakCacheMetadataInOmitted() { /** * Tests that "virtual/missing" resources can exist for renamed fields. * - * @see https://www.drupal.org/project/jsonapi/issues/3034786 - * @see https://www.drupal.org/project/jsonapi_extras/issues/3035544 + * @see https://www.drupal.org/project/drupal/issues/3034786 + * @see https://www.drupal.org/project/drupal/issues/3035544 */ public function testAliasedFieldsWithVirtualRelationships() { // Set up the data model. diff --git a/core/modules/jsonapi/tests/src/Functional/MediaTest.php b/core/modules/jsonapi/tests/src/Functional/MediaTest.php index 38911ea95ec0f8da56bdd06cc490e7f4d6961562..b630dcc6fb0ba947b576f0095fa5fd2d02f24b33 100644 --- a/core/modules/jsonapi/tests/src/Functional/MediaTest.php +++ b/core/modules/jsonapi/tests/src/Functional/MediaTest.php @@ -348,7 +348,7 @@ protected function getExpectedUnauthorizedAccessCacheability() { */ public function testPostIndividual() { // @todo Mimic \Drupal\Tests\rest\Functional\EntityResource\Media\MediaResourceTestBase::testPost() - // @todo Later, use https://www.drupal.org/project/jsonapi/issues/2958554 to upload files rather than the REST module. + // @todo Later, use https://www.drupal.org/project/drupal/issues/2958554 to upload files rather than the REST module. parent::testPostIndividual(); } // @codingStandardsIgnoreEnd diff --git a/core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php b/core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php index 05d7f47c246d95cc09b6eb45667a2168bc79e3a2..f5e2fcd72491703403a7ddc70424bd0f695b6b0b 100644 --- a/core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php +++ b/core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php @@ -176,7 +176,7 @@ protected function getExpectedUnauthorizedAccessMessage($method) { * {@inheritdoc} */ public function testRelated() { - $this->markTestSkipped('Remove this in https://www.drupal.org/project/jsonapi/issues/2940339'); + $this->markTestSkipped('Remove this in https://www.drupal.org/project/drupal/issues/2940339'); } /** diff --git a/core/modules/jsonapi/tests/src/Functional/NodeTest.php b/core/modules/jsonapi/tests/src/Functional/NodeTest.php index 363c69ec45fb791d9aba8ad6dd1ca87dabd4a0a0..6800460182cc4482e24232aa7407d4a763f18a37 100644 --- a/core/modules/jsonapi/tests/src/Functional/NodeTest.php +++ b/core/modules/jsonapi/tests/src/Functional/NodeTest.php @@ -271,7 +271,7 @@ public function testPatchPath() { $this->setUpAuthorization('PATCH'); $this->config('jsonapi.settings')->set('read_only', FALSE)->save(TRUE); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $this->entity->uuid()]); // $url = $this->entity->toUrl('jsonapi'); @@ -311,14 +311,14 @@ public function testGetIndividual() { // Unpublish node. $this->entity->setUnpublished()->save(); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $this->entity->uuid()]); // $url = $this->entity->toUrl('jsonapi'); $request_options = $this->getAuthenticationRequestOptions(); // 403 when accessing own unpublished node. $response = $this->request('GET', $url, $request_options); - // @todo Remove $expected + assertResourceResponse() in favor of the commented line below once https://www.drupal.org/project/jsonapi/issues/2943176 lands. + // @todo Remove $expected + assertResourceResponse() in favor of the commented line below once https://www.drupal.org/project/drupal/issues/2943176 lands. $expected_document = [ 'jsonapi' => static::$jsonApiMember, 'errors' => [ @@ -374,7 +374,7 @@ protected function assertCacheableNormalizations() { ]); // After saving the entity the normalization should not be cached. $this->assertFalse($cache); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $uuid]); // $url = $this->entity->toUrl('jsonapi'); $request_options = $this->getAuthenticationRequestOptions(); diff --git a/core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php b/core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php index c364edcca0ad855fde7567bed9a347ff2bd69e9d..efedfac0a01c12bf01a04db5f852ec096b6cebaa 100644 --- a/core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php +++ b/core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php @@ -906,7 +906,7 @@ public function testGetIndividual() { // - to first test all mistakes a developer might make, and assert that the // error responses provide a good DX // - to eventually result in a well-formed request that succeeds. - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $this->entity->uuid()]); // $url = $this->entity->toUrl('jsonapi'); $request_options = []; @@ -1986,7 +1986,7 @@ public function testPostIndividual() { if (get_class($this->entityStorage) !== ContentEntityNullStorage::class) { $created_entity = $this->entityLoadUnchanged(static::$firstCreatedEntityId); $uuid = $created_entity->uuid(); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $location = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $uuid]); if (static::$resourceTypeIsVersionable) { assert($created_entity instanceof RevisionableInterface); @@ -2040,7 +2040,7 @@ public function testPostIndividual() { if ($this->entity->getEntityType()->getStorageClass() !== ContentEntityNullStorage::class && $this->entity->getEntityType()->hasKey('uuid')) { $second_created_entity = $this->entityStorage->load(static::$secondCreatedEntityId); $uuid = $second_created_entity->uuid(); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $location = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $uuid]); /* $location = $this->entityStorage->load(static::$secondCreatedEntityId)->toUrl('jsonapi')->setAbsolute(TRUE)->toString(); */ if (static::$resourceTypeIsVersionable) { @@ -2120,7 +2120,7 @@ public function testPatchIndividual() { // - to first test all mistakes a developer might make, and assert that the // error responses provide a good DX // - to eventually result in a well-formed request that succeeds. - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $this->entity->uuid()]); // $url = $this->entity->toUrl('jsonapi'); $request_options = []; @@ -2375,7 +2375,7 @@ public function testPatchIndividual() { $updated_entity->setNewRevision(); $updated_entity->save(); $actual_response = $this->request('PATCH', $url, $request_options); - $this->assertResourceErrorResponse(400, 'Updating a resource object that has a working copy is not yet supported. See https://www.drupal.org/project/jsonapi/issues/2795279.', $url, $actual_response); + $this->assertResourceErrorResponse(400, 'Updating a resource object that has a working copy is not yet supported. See https://www.drupal.org/project/drupal/issues/2795279.', $url, $actual_response); // Allow PATCHing an unpublished default revision. $updated_entity->set('moderation_state', 'archived'); @@ -2416,7 +2416,7 @@ public function testDeleteIndividual() { // - to first test all mistakes a developer might make, and assert that the // error responses provide a good DX // - to eventually result in a well-formed request that succeeds. - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $this->entity->uuid()]); // $url = $this->entity->toUrl('jsonapi'); $request_options = []; @@ -2699,7 +2699,7 @@ public function testRevisions() { $request_options = NestedArray::mergeDeep($request_options, $this->getAuthenticationRequestOptions()); $response = $this->request('GET', $url, $request_options); $detail = 'JSON:API does not yet support resource versioning for this resource type.'; - $detail .= ' For context, see https://www.drupal.org/project/jsonapi/issues/2992833#comment-12818258.'; + $detail .= ' For context, see https://www.drupal.org/project/drupal/issues/2992833#comment-12818258.'; $detail .= ' To contribute, see https://www.drupal.org/project/drupal/issues/2350939 and https://www.drupal.org/project/drupal/issues/2809177.'; $expected_cache_contexts = [ 'url.path', @@ -2736,7 +2736,7 @@ public function testRevisions() { $entity->save(); $latest_revision_id = (int) $entity->getRevisionId(); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $this->entity->uuid()])->setAbsolute(); // $url = $this->entity->toUrl('jsonapi'); $collection_url = Url::fromRoute(sprintf('jsonapi.%s.collection', static::$resourceTypeName))->setAbsolute(); diff --git a/core/modules/jsonapi/tests/src/Functional/TermTest.php b/core/modules/jsonapi/tests/src/Functional/TermTest.php index 2cae64dba6f482d377a4f1d2d6d1c81d151d23b0..efb59122a4b66bc696516b0091565943f53fa266 100644 --- a/core/modules/jsonapi/tests/src/Functional/TermTest.php +++ b/core/modules/jsonapi/tests/src/Functional/TermTest.php @@ -372,7 +372,7 @@ public function testPatchPath() { $this->setUpAuthorization('PATCH'); $this->config('jsonapi.settings')->set('read_only', FALSE)->save(TRUE); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $this->entity->uuid()]); // $url = $this->entity->toUrl('jsonapi'); $request_options = []; @@ -438,7 +438,7 @@ public function testGetIndividualTermWithParent(array $parent_term_ids) { // Modify the entity under test to use the provided parent terms. $this->entity->set('parent', $parent_term_ids)->save(); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), ['entity' => $this->entity->uuid()]); // $url = $this->entity->toUrl('jsonapi'); $request_options = []; @@ -473,7 +473,7 @@ public function providerTestGetIndividualTermWithParent() { * {@inheritdoc} */ public function testRelated() { - $this->markTestSkipped('Remove this in https://www.drupal.org/project/jsonapi/issues/2940339'); + $this->markTestSkipped('Remove this in https://www.drupal.org/project/drupal/issues/2940339'); } /** diff --git a/core/modules/jsonapi/tests/src/Functional/UserTest.php b/core/modules/jsonapi/tests/src/Functional/UserTest.php index 85ab8f7e2c329323a3ba4d4e5edcb4cb2693eee5..b08df8eb26b440681f5b85decc8645efea211b98 100644 --- a/core/modules/jsonapi/tests/src/Functional/UserTest.php +++ b/core/modules/jsonapi/tests/src/Functional/UserTest.php @@ -203,7 +203,7 @@ protected function getExpectedUnauthorizedAccessMessage($method) { * Tests PATCHing security-sensitive base fields of the logged in account. */ public function testPatchDxForSecuritySensitiveBaseFields() { - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.user--user.individual'), ['entity' => $this->account->uuid()]); /* $url = $this->account->toUrl('jsonapi'); */ @@ -321,7 +321,7 @@ protected function assertRpcLogin($username, $password) { * Tests PATCHing security-sensitive base fields to change other users. */ public function testPatchSecurityOtherUser() { - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $url = Url::fromRoute(sprintf('jsonapi.user--user.individual'), ['entity' => $this->account->uuid()]); /* $url = $this->account->toUrl('jsonapi'); */ @@ -379,7 +379,7 @@ public function testGetMailFieldOnlyVisibleToOwner() { $this->grantPermissionsToTestedRole(['access user profiles']); $collection_url = Url::fromRoute('jsonapi.user--user.collection', [], ['query' => ['sort' => 'drupal_internal__uid']]); - // @todo Remove line below in favor of commented line in https://www.drupal.org/project/jsonapi/issues/2878463. + // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463. $user_a_url = Url::fromRoute(sprintf('jsonapi.user--user.individual'), ['entity' => $user_a->uuid()]); /* $user_a_url = $user_a->toUrl('jsonapi'); */ $request_options = []; diff --git a/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php b/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php index 9ca239a615da15ab3a1dfc804754f56150d2b1b8..6fa0ff0bb2b778b964ccacf6798a0904ed4dd993 100644 --- a/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php +++ b/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php @@ -302,7 +302,7 @@ public function testNormalize() { * @covers ::normalize */ public function testNormalizeRelated() { - $this->markTestIncomplete('This fails and should be fixed by https://www.drupal.org/project/jsonapi/issues/2922121'); + $this->markTestIncomplete('This fails and should be fixed by https://www.drupal.org/project/drupal/issues/2922121'); list($request, $resource_type) = $this->generateProphecies('node', 'article', 'uid'); $request->query = new ParameterBag([