MediaWiki master
CacheDependency.php
Go to the documentation of this file.
1<?php
13abstract class CacheDependency {
19 abstract public function isExpired();
20
25 public function loadDependencyValues() {
26 }
27}
Base class to represent dependencies for LocalisationCache entries.
loadDependencyValues()
Hook to perform any expensive pre-serialize loading of dependency values.
isExpired()
Returns true if the dependency is expired, false otherwise.