@@ -65,7 +65,7 @@ Selecting Runtimes
65
65
The default Runtime is :class: `Symfony\\ Component\\ Runtime\\ SymfonyRuntime `, it
66
66
works excellent on most applications running with a webserver like Nginx and Apache,
67
67
and PHP-FPM. You may change Runtime to :class: `Symfony\\ Component\\ Runtime\\ GenericRuntime `
68
- or a custom Runtime for Swoole or Aws Lambda. This can be done by specifying the
68
+ or a custom Runtime for Swoole or AWS Lambda. This can be done by specifying the
69
69
Runtime class in the ``APP_RUNTIME `` environment variable or to specify the
70
70
``extra.runtime.class `` in ``composer.json ``.
71
71
@@ -82,8 +82,8 @@ Runtime class in the ``APP_RUNTIME`` environment variable or to specify the
82
82
}
83
83
}
84
84
85
- Using SymfonyRuntime
86
- --------------------
85
+ Using the SymfonyRuntime
86
+ ------------------------
87
87
88
88
The :class: `Symfony\\ Component\\ Runtime\\ RuntimeInterface ` has two methods. One
89
89
to get an instance of :class: `Symfony\\ Component\\ Runtime\\ ResolverInterface `
@@ -309,8 +309,8 @@ The second way to pass an option to ``SymfonyRuntime::__construct()`` is to use
309
309
The environment variable ``APP_DEBUG `` has special support to easily
310
310
turn on and off debugging.
311
311
312
- Creating Your Own Runtime
313
- -------------------------
312
+ Create Your Own Runtime
313
+ -----------------------
314
314
315
315
This is an advanced topic that describes the internals of the Runtime component.
316
316
@@ -319,7 +319,7 @@ could be versioned as a part of a normal package. If the application author deci
319
319
to use this component, the package maintainer of the Runtime class will have more
320
320
control and can fix bugs and add features.
321
321
322
- -- note::
322
+ .. note ::
323
323
324
324
Before Symfony 5.3, the boostrap logic was part of a Flex recipe. Since recipes
325
325
are rarely updated by users, bug patches would rarely be installed.
@@ -413,5 +413,3 @@ The end user will now be able to create front controller like::
413
413
return function (array $context) {
414
414
return new Psr15Application();
415
415
};
416
-
417
-
0 commit comments