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
Next Next commit
Fix framework instantiation in event-dispatcher
As the `$resolver` parameter was split up into `$controllerResolver` and `$argumentResolver`, the Framework instantiation call in this code example seems to be outdated and not in line with earlier steps taken in the tutorial.
  • Loading branch information
GNi33 authored May 9, 2017
commit f582471ecba56f6b1a9cbfb978d247698262e5bf
2 changes: 1 addition & 1 deletion create_framework/event_dispatcher.rst
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ the registration of a listener for the ``response`` event::
$response->setContent($response->getContent().'GA CODE');
});

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

$response->send();
Expand Down
0