Skip to content

Commit 0ab9bba

Browse files
authored
remove reference to some removed classes
1 parent 717aee7 commit 0ab9bba

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

create_framework/http_kernel_httpkernel_class.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,6 @@ client; that's what the ``ResponseListener`` does::
114114

115115
$dispatcher->addSubscriber(new HttpKernel\EventListener\ResponseListener('UTF-8'));
116116

117-
If you want out of the box support for streamed responses, subscribe
118-
to ``StreamedResponseListener``::
119-
120-
$dispatcher->addSubscriber(new HttpKernel\EventListener\StreamedResponseListener());
121-
122117
And in your controller, return a ``StreamedResponse`` instance instead of a
123118
``Response`` instance.
124119

introduction/from_flat_php_to_symfony.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ the ``templates/layout.php``:
240240
You now have a setup that will allow you to reuse the layout.
241241
Unfortunately, to accomplish this, you're forced to use a few ugly
242242
PHP functions (``ob_start()``, ``ob_get_clean()``) in the template. Symfony
243-
solves this using a `Templating`_ component. You'll see it in action shortly.
243+
solves this using `Twig`_ component. You'll see it in action shortly.
244244

245245
Adding a Blog "show" Page
246246
-------------------------
@@ -568,7 +568,7 @@ nice way to group related pages. The controller functions are also sometimes cal
568568

569569
The two controllers (or actions) are still lightweight. Each uses the
570570
:doc:`Doctrine ORM library </doctrine>` to retrieve objects from the
571-
database and the Templating component to render a template and return a
571+
database and the Twig component to render a template and return a
572572
``Response`` object. The ``list.html.twig`` template is now quite a bit simpler,
573573
and uses Twig:
574574

@@ -677,7 +677,7 @@ migrating the blog from flat PHP to Symfony has improved your life:
677677
:doc:`routing </routing>`, or rendering :doc:`controllers </controller>`;
678678

679679
* Symfony gives you **access to open source tools** such as `Doctrine`_ and the
680-
`Templating`_, :doc:`Security </security>`, :doc:`Form </components/form>`,
680+
`Twig`_, :doc:`Security </security>`, :doc:`Form </components/form>`,
681681
`Validator`_ and `Translation`_ components (to name a few);
682682

683683
* The application now enjoys **fully-flexible URLs** thanks to the Routing
@@ -694,7 +694,7 @@ A good selection of `Symfony community tools`_ can be found on GitHub.
694694

695695
.. _`Model-View-Controller`: https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller
696696
.. _`Doctrine`: https://www.doctrine-project.org/
697-
.. _Templating: https://github.com/symfony/templating
697+
.. _Twig: https://github.com/twigphp/twig
698698
.. _Translation: https://github.com/symfony/translation
699699
.. _`Composer`: https://getcomposer.org
700700
.. _`download Composer`: https://getcomposer.org/download/

messenger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2381,7 +2381,7 @@ will not be rolled back.
23812381

23822382
If ``WhenUserRegisteredThenSendWelcomeEmail`` throws an exception, that
23832383
exception will be wrapped into a ``DelayedMessageHandlingException``. Using
2384-
``DelayedMessageHandlingException::getExceptions`` will give you all
2384+
``DelayedMessageHandlingException::getWrappedExceptions`` will give you all
23852385
exceptions that are thrown while handling a message with the
23862386
``DispatchAfterCurrentBusStamp``.
23872387

0 commit comments

Comments
 (0)