Version 1
[yaffs-website] / web / core / lib / Drupal / Core / PageCache / ChainResponsePolicyInterface.php
diff --git a/web/core/lib/Drupal/Core/PageCache/ChainResponsePolicyInterface.php b/web/core/lib/Drupal/Core/PageCache/ChainResponsePolicyInterface.php
new file mode 100644 (file)
index 0000000..9a562e8
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+
+namespace Drupal\Core\PageCache;
+
+/**
+ * Defines the interface for compound request policies.
+ */
+interface ChainResponsePolicyInterface extends ResponsePolicyInterface {
+
+  /**
+   * Add a policy to the list of policy rules.
+   *
+   * @param \Drupal\Core\PageCache\ResponsePolicyInterface $policy
+   *   The request policy rule to add.
+   *
+   * @return $this
+   */
+  public function addPolicy(ResponsePolicyInterface $policy);
+
+}