diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php index f7fbd2ec..a3e36fdd 100644 --- a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php +++ b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php | |||
@@ -12,7 +12,6 @@ use Lexik\Bundle\FormFilterBundle\Filter\Form\Type\ChoiceFilterType; | |||
12 | use Symfony\Component\Form\AbstractType; | 12 | use Symfony\Component\Form\AbstractType; |
13 | use Symfony\Component\Form\FormBuilderInterface; | 13 | use Symfony\Component\Form\FormBuilderInterface; |
14 | use Symfony\Component\OptionsResolver\OptionsResolver; | 14 | use Symfony\Component\OptionsResolver\OptionsResolver; |
15 | use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage; | ||
16 | use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; | 15 | use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; |
17 | 16 | ||
18 | class EntryFilterType extends AbstractType | 17 | class EntryFilterType extends AbstractType |
@@ -23,8 +22,8 @@ class EntryFilterType extends AbstractType | |||
23 | /** | 22 | /** |
24 | * Repository & user are used to get a list of language entries for this user. | 23 | * Repository & user are used to get a list of language entries for this user. |
25 | * | 24 | * |
26 | * @param EntityRepository $entryRepository | 25 | * @param EntityRepository $entryRepository |
27 | * @param TokenStorage $token | 26 | * @param TokenStorageInterface $tokenStorage |
28 | */ | 27 | */ |
29 | public function __construct(EntityRepository $entryRepository, TokenStorageInterface $tokenStorage) | 28 | public function __construct(EntityRepository $entryRepository, TokenStorageInterface $tokenStorage) |
30 | { | 29 | { |