Skip to content
Merged
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: 2 additions & 2 deletions core/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ namespace App\EventListener;

use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Doctrine\Common\Persistence\ObjectManager;
use Doctrine\Orm\EntityManagerInterface;
use Doctrine\Common\Annotations\Reader;

final class UserFilterConfigurator
Expand All @@ -974,7 +974,7 @@ final class UserFilterConfigurator
private $tokenStorage;
private $reader;

public function __construct(ObjectManager $em, TokenStorageInterface $tokenStorage, Reader $reader)
public function __construct(EntityManagerInterface $em, TokenStorageInterface $tokenStorage, Reader $reader)
{
$this->em = $em;
$this->tokenStorage = $tokenStorage;
Expand Down