From 62f32ccadff77594f5b8e3ad24c4c2541ff35885 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 7 Aug 2025 22:19:45 +0200 Subject: PHPStan: finalise strictArrayFilter (#7794) As well as reportPossiblyNonexistentConstantArrayOffset. And disable PHPStan-next from GitHub Action, since the work is completed for now. --- app/Controllers/configureController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controllers/configureController.php') diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index dc5407e99..6c1561d7c 100644 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -386,7 +386,7 @@ class FreshRSS_configure_Controller extends FreshRSS_ActionController { $this->view->tags = FreshRSS_Context::labels(); if (Minz_Request::isPost()) { - $params = array_filter(Minz_Request::paramArray('query')); + $params = Minz_Request::paramArray('query'); $queryParams = []; $name = Minz_Request::paramString('name') ?: _t('conf.query.number', $id + 1); if ('' === $name) { -- cgit v1.2.3