public function CacheableOmission::__construct in Drupal 10
Same name and namespace in other branches
- 8 core/modules/jsonapi/src/Normalizer/Value/CacheableOmission.php \Drupal\jsonapi\Normalizer\Value\CacheableOmission::__construct()
- 9 core/modules/jsonapi/src/Normalizer/Value/CacheableOmission.php \Drupal\jsonapi\Normalizer\Value\CacheableOmission::__construct()
CacheableOmission constructor.
Parameters
\Drupal\Core\Cache\CacheableDependencyInterface $cacheability: Cacheability related to the omission of the normalization. For example, if a field is omitted because of an access result that varies by the `user.permissions` cache context, we need to associate that information with the response so that it will appear for a user *with* the appropriate permissions for that field.
File
- core/
modules/ jsonapi/ src/ Normalizer/ Value/ CacheableOmission.php, line 28
Class
- CacheableOmission
- Represents the cacheability associated with the omission of a value.
Namespace
Drupal\jsonapi\Normalizer\ValueCode
public function __construct(CacheableDependencyInterface $cacheability) {
parent::__construct($cacheability, NULL);
}