Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\PageCache\ChainRequestPolicyInterface. | |
*/ | |
namespace Drupal\Core\PageCache; | |
/** | |
* Defines the interface for compound request policies. | |
*/ | |
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); | |
} |