Skip to content

Commit 43e06c3

Browse files
Nicolas Dewezwouterj
Nicolas Dewez
authored andcommitted
Fix typo Esi in part create framework
1 parent 0134123 commit 43e06c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

create_framework/http-kernel-httpkernelinterface.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ sub-requests to convert them to their proper content::
153153
$framework = new HttpKernel\HttpCache\HttpCache(
154154
$framework,
155155
new HttpKernel\HttpCache\Store(__DIR__.'/../cache'),
156-
new HttpKernel\HttpCache\ESI()
156+
new HttpKernel\HttpCache\Esi()
157157
);
158158

159159
.. note::
@@ -166,7 +166,7 @@ When using complex HTTP caching strategies and/or many ESI include tags, it
166166
can be hard to understand why and when a resource should be cached or not. To
167167
ease debugging, you can enable the debug mode::
168168

169-
$framework = new HttpCache($framework, new Store(__DIR__.'/../cache'), new ESI(), array('debug' => true));
169+
$framework = new HttpCache($framework, new Store(__DIR__.'/../cache'), new Esi(), array('debug' => true));
170170

171171
The debug mode adds a ``X-Symfony-Cache`` header to each response that
172172
describes what the cache layer did:

0 commit comments

Comments
 (0)