Skip to content

Commit

Permalink
minor #36791 [FrameworkBundle] fix stringable annotation (nicolas-gre…
Browse files Browse the repository at this point in the history
…kas)

This PR was submitted for the master branch but it was merged into the 4.4 branch instead.

Discussion
----------

[FrameworkBundle] fix stringable annotation

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

Commits
-------

65e6812 [FrameworkBundle] fix stringable annotation
  • Loading branch information
nicolas-grekas committed May 14, 2020
2 parents e5c82c5 + 65e6812 commit 9bcf9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php
Expand Up @@ -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)
{
Expand Down

0 comments on commit 9bcf9c1

Please sign in to comment.