Skip to content

Add missing imports and remove useless #10841

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

Merged
merged 1 commit into from
Jan 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions profiler/wdt_follow_ajax.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Ideally this header should only be set during development and not for
production. This can be accomplished by setting the header in a
:ref:`kernel.response <component-http-kernel-kernel-response>` event listener::

use Symfony\Component\HttpKernel\Event\FilterResponseEvent;

// ...

public function onKernelResponse(FilterResponseEvent $event)
{
$response = $event->getResponse();
Expand Down
2 changes: 0 additions & 2 deletions translation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ of text (called a *message*), use the
for example, that you're translating a simple message from inside a controller::

// ...
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Translation\TranslatorInterface;

public function index(TranslatorInterface $translator)
Expand Down Expand Up @@ -198,7 +197,6 @@ Message Placeholders

Sometimes, a message containing a variable needs to be translated::

use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Translation\TranslatorInterface;

public function index(TranslatorInterface $translator, $name)
Expand Down