File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -634,7 +634,7 @@ being transferred and processed by its handler::
634634 return $this->schedule ??= (new Schedule())
635635 ->with(
636636 // ...
637- );
637+ )
638638 ->before(function(PreRunEvent $event) {
639639 $message = $event->getMessage();
640640 $messageContext = $event->getMessageContext();
@@ -647,13 +647,13 @@ being transferred and processed by its handler::
647647
648648 // allow to call the ShouldCancel() and avoid the message to be handled
649649 $event->shouldCancel(true);
650- }
650+ })
651651 ->after(function(PostRunEvent $event) {
652652 // Do what you want
653- }
653+ })
654654 ->onFailure(function(FailureEvent $event) {
655655 // Do what you want
656- }
656+ });
657657 }
658658 }
659659
Original file line number Diff line number Diff line change @@ -329,8 +329,8 @@ as follows:
329329Build, Versioning & More Advanced CSS, JavaScript and Image Handling
330330~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
331331
332- For help building, versioning and minifying your JavaScript and
333- CSS assets in a modern way, read about :doc: `Symfony's Asset Mapper </frontend >`.
332+ For help building and versioning your JavaScript and
333+ CSS assets in a modern way, read about :doc: `Symfony's AssetMapper </frontend >`.
334334
335335.. _twig-app-variable :
336336
@@ -1077,7 +1077,7 @@ JavaScript library.
10771077
10781078First, include the `hinclude.js `_ library in your page
10791079:ref: `linking to it <templates-link-to-assets >` from the template or adding it
1080- to your application JavaScript :doc: `using Webpack Encore </frontend >`.
1080+ to your application JavaScript :doc: `using AssetMapper </frontend >`.
10811081
10821082As the embedded content comes from another page (or controller for that matter),
10831083Symfony uses a version of the standard ``render() `` function to configure
You can’t perform that action at this time.
0 commit comments