We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2e20b commit fee8c31Copy full SHA for fee8c31
src/Tools/Service/AwsConfig.php
@@ -35,7 +35,7 @@ class AwsConfig
35
* @param string $region
36
* @return $this
37
*/
38
- public function setAwsRegion(string $region)
+ public function setAwsRegion($region)
39
{
40
$this->awsRegion = $region;
41
return $this;
@@ -57,7 +57,7 @@ public function getAwsRegion()
57
* @param string $key
58
59
60
- public function setAwsKey(string $key)
+ public function setAwsKey($key)
61
62
$this->awsKey = $key;
63
@@ -79,7 +79,7 @@ public function getAwsKey()
79
* @param string $secret
80
81
82
- public function setAwsSecret(string $secret)
+ public function setAwsSecret($secret)
83
84
$this->awsSecret = $secret;
85
0 commit comments