8000 Fix framework instantiation in event-dispatcher by GNi33 · Pull Request #7889 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Fix framework instantiation in event-dispatcher #7889

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
initialize $controllerResolver and $argumentResolver
  • Loading branch information
GNi33 authored Jul 6, 2017
commit c74597e3997d83d88ddcd20e519067c624cafd08
3 changes: 3 additions & 0 deletions create_framework/event_dispatcher.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ the registration of a listener for the ``response`` event::

$response->setContent($response->getContent().'GA CODE');
});

$controllerResolver = new ControllerResolver();
$argumentResolver = new ArgumentResolver();

$framework = new Simplex\Framework($dispatcher, $matcher, $controllerResolver, $argumentResolver);
$response = $framework->handle($request);
Expand Down
0