@@ -66,15 +66,15 @@ framework more configurable, but at the same time, it introduces a lot of
6666issues:
6767
6868* We are not able to register custom listeners anymore as the dispatcher is
69- not available outside the Framework class (an easy workaround could be the
69+ not available outside the Framework class (an workaround could be the
7070 adding of a ``Framework::getEventDispatcher() `` method);
7171
7272* We have lost the flexibility we had before; you cannot change the
7373 implementation of the ``UrlMatcher `` or of the ``ControllerResolver ``
7474 anymore;
7575
76- * Related to the previous point, we cannot test our framework easily anymore
77- as it's impossible to mock internal objects;
76+ * Related to the previous point, we cannot test our framework without much
77+ effort anymore as it's impossible to mock internal objects;
7878
7979* We cannot change the charset passed to ``ResponseListener `` anymore (a
8080 workaround could be to pass it as a constructor argument).
@@ -234,7 +234,7 @@ And the related change in the front controller::
234234
235235 $container->setParameter('routes', include __DIR__.'/../src/app.php');
236236
237- We have obviously barely scratched the surface of what you can do with the
237+ We have barely scratched the surface of what you can do with the
238238container: from class names as parameters, to overriding existing object
239239definitions, from shared service support to dumping a container to a plain PHP class,
240240and much more. The Symfony dependency injection container is really powerful
0 commit comments