MediaWiki  master
CacheDependency.php
Go to the documentation of this file.
1 <?php
27 abstract class CacheDependency {
31  abstract public function isExpired();
32 
37  public function loadDependencyValues() {
38  }
39 }
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.