From a803467b9634464fcea9aacb5da494fbd1f3a177 Mon Sep 17 00:00:00 2001 From: Narek Zakarian Date: Tue, 3 Sep 2024 15:19:38 +0400 Subject: [PATCH] Fix the coding styles --- modules/ppcp-axo/services.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ppcp-axo/services.php b/modules/ppcp-axo/services.php index 074e5e63e..1ad8cfe39 100644 --- a/modules/ppcp-axo/services.php +++ b/modules/ppcp-axo/services.php @@ -294,8 +294,8 @@ return array( $active_plugins_list = array_filter( $incompatible_plugins, - function( $plugin ) { - return $plugin['isActive']; + function( array $plugin ): bool { + return (bool) $plugin['isActive']; } );