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