Skip to content

Commit 6fa3a46

Browse files
committed
fix
1 parent 9795d3a commit 6fa3a46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Middleware/NoCacheHeadersMiddleware.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ class NoCacheHeadersMiddleware
1313
*
1414
* @var array
1515
*/
16-
protected $headers = [
16+
protected $headers = array(
1717
'pragma' => 'no-cache',
1818
'expires' => 'Thu, 19 Nov 1981 08:52:00 GMT',
1919
'cache-control' => 'private, max-age=0, proxy-revalidate, no-cache, must-revalidate, no-store',
20-
];
20+
);
2121

2222
/**
2323
* The URIs that should be excluded from headers.

0 commit comments

Comments
 (0)