Skip to content

Instantly share code, notes, and snippets.

@msonnabaum
Created August 26, 2012 17:34
Show Gist options
  • Save msonnabaum/3481868 to your computer and use it in GitHub Desktop.
Save msonnabaum/3481868 to your computer and use it in GitHub Desktop.
<?php
namespace Drupal\Core;
use Symfony\Component\HttpKernel\HttpCache\HttpCache as SymfonyHttpCache;
class HttpCache extends SymfonyHttpCache {
protected function getOptions() {
return array(
'debug' => TRUE
);
}
public function terminate(Request $request, Response $response) {
parent::terminate($request, $response);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment