comparison vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategyInterface.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
25 */ 25 */
26 interface ResponseCacheStrategyInterface 26 interface ResponseCacheStrategyInterface
27 { 27 {
28 /** 28 /**
29 * Adds a Response. 29 * Adds a Response.
30 *
31 * @param Response $response
32 */ 30 */
33 public function add(Response $response); 31 public function add(Response $response);
34 32
35 /** 33 /**
36 * Updates the Response HTTP headers based on the embedded Responses. 34 * Updates the Response HTTP headers based on the embedded Responses.
37 *
38 * @param Response $response
39 */ 35 */
40 public function update(Response $response); 36 public function update(Response $response);
41 } 37 }