From 54097103e6aff74a63944a3ef1cbe98be05af677 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sat, 13 May 2023 11:16:49 +0200 Subject: [PATCH] Fix test when the bundle is not available --- Command/EnableEncryptionConfigCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/EnableEncryptionConfigCommand.php b/Command/EnableEncryptionConfigCommand.php index 9d4e4fa7..97884abc 100644 --- a/Command/EnableEncryptionConfigCommand.php +++ b/Command/EnableEncryptionConfigCommand.php @@ -59,7 +59,7 @@ protected function configure(): void ; } - public function isEnabled() + public function isEnabled(): bool { return $this->algorithmManagerFactory !== null; }