Issue #2466917 by jhedstrom: DatabaseCacheTagsChecksum::calculateChecksum() has incorrect documentation
parent
6d9f75a965
commit
822835f04c
|
@ -99,9 +99,15 @@ class DatabaseCacheTagsChecksum implements CacheTagsChecksumInterface, CacheTags
|
|||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
* Calculates the current checksum for a given set of tags.
|
||||
*
|
||||
* @param array $tags
|
||||
* The array of tags to calculate the checksum for.
|
||||
*
|
||||
* @return int
|
||||
* The calculated checksum.
|
||||
*/
|
||||
public function calculateChecksum(array $tags) {
|
||||
protected function calculateChecksum(array $tags) {
|
||||
$checksum = 0;
|
||||
|
||||
$query_tags = array_diff($tags, array_keys($this->tagCache));
|
||||
|
|
Loading…
Reference in New Issue