@@ -28,8 +28,6 @@ public function __construct(AdapterInterface $adapter)
28
28
}
29
29
30
30
/**
31
- * @param array $options
32
- *
33
31
* @throws Exception\SecretNotFoundException
34
32
*/
35
33
public function getSecret (string $ key , ?array $ options = []): Secret
@@ -41,9 +39,6 @@ public function getSecret(string $key, ?array $options = []): Secret
41
39
return $ this ->adapter ->getSecret ($ key , $ resolver ->resolve ($ options ));
42
40
}
43
41
44
- /**
45
- * @param array $options
46
- */
47
42
public function putSecret (Secret $ secret , ?array $ options = []): Secret
48
43
{
49
44
$ resolver = new OptionsResolver ();
@@ -54,8 +49,6 @@ public function putSecret(Secret $secret, ?array $options = []): Secret
54
49
}
55
50
56
51
/**
57
- * @param array $options
58
- *
59
52
* @throws Exception\SecretNotFoundException
60
53
*/
61
54
public function deleteSecretByKey (string $ key , ?array $ options = []): void
@@ -69,9 +62,6 @@ public function deleteSecretByKey(string $key, ?array $options = []): void
69
62
$ this ->adapter ->deleteSecret ($ secret , $ resolver ->resolve ($ options ));
70
63
}
71
64
72
- /**
73
- * @param array $options
74
- */
75
65
public function deleteSecret (Secret $ secret , ?array $ options = []): void
76
66
{
77
67
$ resolver = new OptionsResolver ();
0 commit comments