comparison vendor/symfony/http-kernel/TerminableInterface.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 /** 26 /**
27 * Terminates a request/response cycle. 27 * Terminates a request/response cycle.
28 * 28 *
29 * Should be called after sending the response and before shutting down the kernel. 29 * Should be called after sending the response and before shutting down the kernel.
30 *
31 * @param Request $request A Request instance
32 * @param Response $response A Response instance
33 */ 30 */
34 public function terminate(Request $request, Response $response); 31 public function terminate(Request $request, Response $response);
35 } 32 }