Prepends a cache backend to the cache chain.
CacheBackendInterface $backend: The backend to be prepended to the cache chain.
$this The called object.
public function prependBackend(CacheBackendInterface $backend) { array_unshift($this->backends, $backend); return $this; }