You are here

class CacheableResourceResponse in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/src/CacheableResourceResponse.php \Drupal\jsonapi\CacheableResourceResponse

Extends ResourceResponse with cacheability.

We want to have the same functionality for both responses that are cacheable and those that are not. This response class should be used in all instances where the response is expected to be cacheable.

@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.

Hierarchy

  • class \Drupal\jsonapi\CacheableResourceResponse extends \Drupal\jsonapi\ResourceResponse implements \Drupal\Core\Cache\CacheableResponseInterface uses \Drupal\Core\Cache\CacheableResponseTrait

Expanded class hierarchy of CacheableResourceResponse

See also

https://www.drupal.org/project/drupal/issues/3032787

jsonapi.api.php

5 files declare their use of CacheableResourceResponse
DefaultExceptionSubscriber.php in core/modules/jsonapi/src/EventSubscriber/DefaultExceptionSubscriber.php
EntityResource.php in core/modules/jsonapi/src/Controller/EntityResource.php
EntryPoint.php in core/modules/jsonapi/src/Controller/EntryPoint.php
ResourceResponseTestTrait.php in core/modules/jsonapi/tests/src/Functional/ResourceResponseTestTrait.php
ResourceTestBase.php in core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php

File

core/modules/jsonapi/src/CacheableResourceResponse.php, line 21

Namespace

Drupal\jsonapi
View source
class CacheableResourceResponse extends ResourceResponse implements CacheableResponseInterface {
  use CacheableResponseTrait;

}

Members