Commit 95096671 authored by Attila Santo-Rieder's avatar Attila Santo-Rieder
Browse files

Issue #3292397: Implement CacheableSupportsMethodInterface::hasCacheableSupportsMethod()

parent 6344e880
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -75,4 +75,11 @@ class EntityReferenceNormalizer extends EntityReferenceFieldItemNormalizer {
    return $this->allowedFields;
  }

  /**
   * {@inheritdoc}
   */
  public function hasCacheableSupportsMethod(): bool {
    return FALSE;
  }

}
+7 −0
Original line number Diff line number Diff line
@@ -64,4 +64,11 @@ class FieldItemNormalizer extends CoreFieldItemNormalizer {
    return $data;
  }

  /**
   * {@inheritdoc}
   */
  public function hasCacheableSupportsMethod(): bool {
    return FALSE;
  }

}
+7 −0
Original line number Diff line number Diff line
@@ -66,4 +66,11 @@ class FieldNormalizer extends CoreFieldNormalizer {
    return parent::denormalize($data, $class, $format, $context);
  }

  /**
   * {@inheritdoc}
   */
  public function hasCacheableSupportsMethod(): bool {
    return FALSE;
  }

}