aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-07 10:41:11 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-07 10:41:11 +0100
commit94766a89627df74449b9e34d31a06db386a1b07a (patch)
treea3b4bcb5529a9e53d93320410902a60dde639987 /src/Wallabag/CoreBundle/Form
parent2fe2e411a74d541ddd7eee2aca1b80ac58de49eb (diff)
downloadwallabag-94766a89627df74449b9e34d31a06db386a1b07a.tar.gz
wallabag-94766a89627df74449b9e34d31a06db386a1b07a.tar.zst
wallabag-94766a89627df74449b9e34d31a06db386a1b07a.zip
PHP CS
Diffstat (limited to 'src/Wallabag/CoreBundle/Form')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php5
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;
12use Symfony\Component\Form\AbstractType; 12use Symfony\Component\Form\AbstractType;
13use Symfony\Component\Form\FormBuilderInterface; 13use Symfony\Component\Form\FormBuilderInterface;
14use Symfony\Component\OptionsResolver\OptionsResolver; 14use Symfony\Component\OptionsResolver\OptionsResolver;
15use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
16use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; 15use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
17 16
18class EntryFilterType extends AbstractType 17class 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 {