aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-02-27 15:31:57 +0100
committerGitHub <noreply@github.com>2019-02-27 15:31:57 +0100
commitfc4c1f50b41f93170bca587730193386b6c2df38 (patch)
tree994fc7fa9e96ef9f15ef311cbc103fab41746e0f /src/Wallabag/CoreBundle
parenta86c3f1759a3c0ecbf095888789c2a08d71b5c09 (diff)
parent8c0ba953070dca22e9a06999cfe355ea01847c64 (diff)
downloadwallabag-fc4c1f50b41f93170bca587730193386b6c2df38.tar.gz
wallabag-fc4c1f50b41f93170bca587730193386b6c2df38.tar.zst
wallabag-fc4c1f50b41f93170bca587730193386b6c2df38.zip
Merge pull request #3857 from wallabag/php73
Replace continue; with break; to avoid PHP 7.3 warnings
Diffstat (limited to 'src/Wallabag/CoreBundle')
-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