From f3af3f0f3d4da8023c5e918545d47a51afc4b6c1 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 26 Mar 2023 23:19:41 +0200 Subject: Automated test towards PHPStan level 6 (#5230) * Automated test towards PHPStan level 6 Contributes to https://github.com/FreshRSS/FreshRSS/issues/4112 With this automated tests, files that are passing Level 6 are tested to avoid regressions towards Level 5 (which is the current baseline for the whole code-base) It is included when calling `make test-all` or can be called specifically by `composer run-script phpstan-next` * Test and example with 3 new passing files --- app/actualize_script.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/actualize_script.php') diff --git a/app/actualize_script.php b/app/actualize_script.php index bad466e64..8e445b1e7 100755 --- a/app/actualize_script.php +++ b/app/actualize_script.php @@ -25,7 +25,7 @@ define('SIMPLEPIE_SYSLOG_ENABLED', FreshRSS_Context::$system_conf->simplepie_sys * Writes to FreshRSS admin log, and if it is not already done by default, * writes to syslog (only if simplepie_syslog_enabled in FreshRSS configuration) and to STDOUT */ -function notice($message) { +function notice(string $message): void { Minz_Log::notice($message, ADMIN_LOG); // @phpstan-ignore-next-line if (!COPY_LOG_TO_SYSLOG && SIMPLEPIE_SYSLOG_ENABLED) { -- cgit v1.2.3