interface ChainRequestPolicyInterface in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/PageCache/ChainRequestPolicyInterface.php \Drupal\Core\PageCache\ChainRequestPolicyInterface
- 9 core/lib/Drupal/Core/PageCache/ChainRequestPolicyInterface.php \Drupal\Core\PageCache\ChainRequestPolicyInterface
Defines the interface for compound request policies.
Hierarchy
- interface \Drupal\Core\PageCache\ChainRequestPolicyInterface extends \Drupal\Core\PageCache\RequestPolicyInterface
Expanded class hierarchy of ChainRequestPolicyInterface
All classes that implement ChainRequestPolicyInterface
File
- core/
lib/ Drupal/ Core/ PageCache/ ChainRequestPolicyInterface.php, line 8
Namespace
Drupal\Core\PageCacheView source
interface ChainRequestPolicyInterface extends RequestPolicyInterface {
/**
* Add a policy to the list of policy rules.
*
* @param \Drupal\Core\PageCache\RequestPolicyInterface $policy
* The request policy rule to add.
*
* @return $this
*/
public function addPolicy(RequestPolicyInterface $policy);
}