8000 [FrameworkBundle] made some services private · symfony/symfony@adc067e · GitHub
[go: up one dir, main page]

Skip to content

Commit adc067e

Browse files
committed
[FrameworkBundle] made some services private
1 parent 1f1392d commit adc067e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/Resources/config/content_generator.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,20 @@
2020
<argument>%kernel.debug%</argument>
2121
</service>
2222

23-
<service id="http_content_renderer.strategy.default" class="%http_content_renderer.strategy.default.class%">
23+
<service id="http_content_renderer.strategy.default" class="%http_content_renderer.strategy.default.class%" public="false">
2424
<tag name="kernel.content_renderer_strategy" />
2525
<argument type="service" id="http_kernel" />
2626
<call method="setUrlGenerator"><argument type="service" id="router" /></call>
2727
</service>
2828

29-
<service id="http_content_renderer.strategy.esi" class="%http_content_renderer.strategy.esi.class%">
29+
<service id="http_content_renderer.strategy.esi" class="%http_content_renderer.strategy.esi.class%" public="false">
3030
<tag name="kernel.content_renderer_strategy" />
3131
<argument type="service" id="esi" />
3232
<argument type="service" id="http_content_renderer.strategy.default" />
33 5E7D 33
<call method="setUrlGenerator"><argument type="service" id="router" /></call>
3434
</service>
3535

36+
<!-- FIXME: this service should be private but it cannot due to a bug in PhpDumper -->
3637
<service id="http_content_renderer.strategy.hinclude" class="%http_content_renderer.strategy.hinclude.class%">
3738
<tag name="kernel.content_renderer_strategy" />
3839
<argument type="service" id="templating" />

0 commit comments

Comments
 (0)
0