*/ interface TagAwareAdapterInterface extends AdapterInterface { /** * Invalidates cached items using tags. * * @param string[] $tags An array of tags to invalidate * * @throws InvalidArgumentException When $tags is not valid */ public function invalidateTags(array $tags): bool; }