From 2d17c020b6695d47debda065804db4e2d2f92e55 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 15 May 2024 08:57:58 +0200 Subject: PHPStan 1.11 + minor update dev dependencies (#6459) * PHPStan 1.11 + minor update dev dependencies https://github.com/phpstan/phpstan/releases/tag/1.11.0 * Comment style --- lib/lib_rss.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/lib_rss.php') diff --git a/lib/lib_rss.php b/lib/lib_rss.php index 7e4b7732e..22da0b98e 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -41,7 +41,7 @@ if (!function_exists('syslog')) { define('STDERR', fopen('php://stderr', 'w')); } function syslog(int $priority, string $message): bool { - // @phpstan-ignore-next-line + // @phpstan-ignore booleanAnd.rightAlwaysTrue if (COPY_SYSLOG_TO_STDERR && defined('STDERR') && STDERR) { return fwrite(STDERR, $message . "\n") != false; } -- cgit v1.2.3