aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2019-02-11 11:50:24 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-02-11 11:57:52 +0100
commit0182cdaec430a72379ef96ade05300e7b4d0efd7 (patch)
treec2711cc037ab21822831affd0cb0dec8e9047672 /src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
parenta9f61d3dbba07d25d4290572f157787c0b99dcfd (diff)
downloadwallabag-0182cdaec430a72379ef96ade05300e7b4d0efd7.tar.gz
wallabag-0182cdaec430a72379ef96ade05300e7b4d0efd7.tar.zst
wallabag-0182cdaec430a72379ef96ade05300e7b4d0efd7.zip
CS
Diffstat (limited to 'src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
index 702c7f7a..37d0640a 100644
--- a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
@@ -108,7 +108,7 @@ class EntryFilterType extends AbstractType
108 ->add('httpStatus', TextFilterType::class, [ 108 ->add('httpStatus', TextFilterType::class, [
109 'apply_filter' => function (QueryInterface $filterQuery, $field, $values) { 109 'apply_filter' => function (QueryInterface $filterQuery, $field, $values) {
110 $value = $values['value']; 110 $value = $values['value'];
111 if (false === array_key_exists($value, Response::$statusTexts)) { 111 if (false === \array_key_exists($value, Response::$statusTexts)) {
112 return; 112 return;
113 } 113 }
114 114