8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de69a87 commit 400c087Copy full SHA for 400c087
book/part12.rst
@@ -181,6 +181,20 @@ The front controller is now only about wiring everything together::
181
182
$response->send();
183
184
+As all the objects are now created in the dependency injection container, the framework code should be the previous simple version::
185
+
186
+ <?php
187
188
+ // example.com/src/Simplex/Framework.php
189
190
+ namespace Simplex;
191
192
+ use Symfony\Component\HttpKernel\HttpKernel;
193
194
+ class Framework extends HttpKernel
195
+ {
196
+ }
197
198
.. note::
199
200
If you want a light alternative for your container, consider `Pimple`_, a
0 commit comments