public function ChainResponsePolicy::addPolicy in Drupal 9
Same name in this branch
- 9 core/lib/Drupal/Core/PageCache/ChainResponsePolicy.php \Drupal\Core\PageCache\ChainResponsePolicy::addPolicy()
- 9 core/lib/Drupal/Core/ProxyClass/PageCache/ChainResponsePolicy.php \Drupal\Core\ProxyClass\PageCache\ChainResponsePolicy::addPolicy()
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/PageCache/ChainResponsePolicy.php \Drupal\Core\PageCache\ChainResponsePolicy::addPolicy()
Add a policy to the list of policy rules.
Parameters
\Drupal\Core\PageCache\ResponsePolicyInterface $policy: The request policy rule to add.
Return value
$this
Overrides ChainResponsePolicyInterface::addPolicy
File
- core/
lib/ Drupal/ Core/ PageCache/ ChainResponsePolicy.php, line 47
Class
- ChainResponsePolicy
- Implements a compound response policy.
Namespace
Drupal\Core\PageCacheCode
public function addPolicy(ResponsePolicyInterface $policy) {
$this->rules[] = $policy;
return $this;
}