aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2019-02-27 14:33:26 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-02-27 14:33:26 +0100
commitea925bb112ab99efbb29d8e7113e80357a70bd18 (patch)
treea7c98a6cff8301675875617e604c508113424192 /src/Wallabag/CoreBundle/Form
parent3784688a88230d9c3aec4ca518be52ea1c70aeb9 (diff)
downloadwallabag-ea925bb112ab99efbb29d8e7113e80357a70bd18.tar.gz
wallabag-ea925bb112ab99efbb29d8e7113e80357a70bd18.tar.zst
wallabag-ea925bb112ab99efbb29d8e7113e80357a70bd18.zip
CS
Diffstat (limited to 'src/Wallabag/CoreBundle/Form')
-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