%PDF- %PDF-
Direktori : /proc/309157/root/proc/self/root/www/loslex_o/tracker/api/rest/restcore/ |
Current File : //proc/309157/root/proc/self/root/www/loslex_o/tracker/api/rest/restcore/CacheMiddleware.php |
<?php # MantisBT - A PHP based bugtracking system # MantisBT is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # MantisBT is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with MantisBT. If not, see <http://www.gnu.org/licenses/>. /** * A webservice interface to Mantis Bug Tracker * * @package MantisBT * @copyright Copyright MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** * A middleware class that disables caching. */ class CacheMiddleware { public function __invoke( \Slim\Http\Request $request, \Slim\Http\Response $response, callable $next ) { return $next( $request, $response )-> withoutHeader( 'Cache-Control' )-> withHeader( 'Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0' ); } }