Skip to content

Commit

Permalink
[Serializer] It must possible to configure to keys to exclude for the…
Browse files Browse the repository at this point in the history
… cache key computation
  • Loading branch information
dunglas committed Apr 4, 2020
1 parent 38cbcc6 commit 981b57a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -115,7 +115,7 @@ public function __construct(ClassMetadataFactoryInterface $classMetadataFactory
throw new InvalidArgumentException(sprintf('The "%s" given in the default context is not callable.', self::MAX_DEPTH_HANDLER));
}

$this->defaultContext[self::EXCLUDE_FROM_CACHE_KEY] = [self::CIRCULAR_REFERENCE_LIMIT_COUNTERS];
$this->defaultContext[self::EXCLUDE_FROM_CACHE_KEY] = array_merge($this->defaultContext[self::EXCLUDE_FROM_CACHE_KEY] ?? [], [self::CIRCULAR_REFERENCE_LIMIT_COUNTERS]);

$this->propertyTypeExtractor = $propertyTypeExtractor;

Expand Down

0 comments on commit 981b57a

Please sign in to comment.