From 65e6812c1d0223c0fdf053b9750f2e8d21a2fb30 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 12 May 2020 15:36:00 +0200 Subject: [PATCH] [FrameworkBundle] fix stringable annotation --- src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php b/src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php index 0bbfa080803ee..c0ad726506f8d 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php +++ b/src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php @@ -28,8 +28,8 @@ class SodiumVault extends AbstractVault implements EnvVarLoaderInterface private $secretsDir; /** - * @param string|object|null $decryptionKey A string or a stringable object that defines the private key to use to decrypt the vault - * or null to store generated keys in the provided $secretsDir + * @param string|\Stringable|null $decryptionKey A string or a stringable object that defines the private key to use to decrypt the vault + * or null to store generated keys in the provided $secretsDir */ public function __construct(string $secretsDir, $decryptionKey = null) {