diff options
author | Dave Long <dave@longwaveconsulting.com> | 2025-01-03 14:51:10 +0000 |
---|---|---|
committer | Dave Long <dave@longwaveconsulting.com> | 2025-01-03 14:51:10 +0000 |
commit | efee4d2f3c87200ed1011c7812c2f57a27eb0df0 (patch) | |
tree | 09f7cf47e2a3765d44a8167214cf8ac152daf5de /core/modules/serialization | |
parent | 3c3271c1abf1ba651af5072d0e6ec40f32ce6acf (diff) | |
download | drupal-efee4d2f3c87200ed1011c7812c2f57a27eb0df0.tar.gz drupal-efee4d2f3c87200ed1011c7812c2f57a27eb0df0.zip |
Issue #3478220 by quietone: Fix MissingParamType in modules not views
Diffstat (limited to 'core/modules/serialization')
-rw-r--r-- | core/modules/serialization/src/Normalizer/NormalizerBase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/serialization/src/Normalizer/NormalizerBase.php b/core/modules/serialization/src/Normalizer/NormalizerBase.php index b0220ce933f..46d286d4aaa 100644 --- a/core/modules/serialization/src/Normalizer/NormalizerBase.php +++ b/core/modules/serialization/src/Normalizer/NormalizerBase.php @@ -83,7 +83,7 @@ abstract class NormalizerBase implements SerializerAwareInterface, CacheableNorm * * @param array $context * Context options for the normalizer. - * @param $data + * @param mixed $data * The data that might have cacheability information. */ protected function addCacheableDependency(array $context, $data) { |