Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

ChainRequestPolicyInterface.php

Namespace

Drupal\Core\PageCache

File

core/lib/Drupal/Core/PageCache/ChainRequestPolicyInterface.php

View source
<?php

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);

}

Interfaces

Title Deprecated Summary
ChainRequestPolicyInterface Defines the interface for compound request policies.
RSS feed
Powered by Drupal