Skip to content

Commit 6c754b3

Browse files
authored
Merge pull request #5 from continuousphp/feature/php-compat
re-adding php 5 support
2 parents fb2e20b + fee8c31 commit 6c754b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Tools/Service/AwsConfig.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AwsConfig
3535
* @param string $region
3636
* @return $this
3737
*/
38-
public function setAwsRegion(string $region)
38+
public function setAwsRegion($region)
3939
{
4040
$this->awsRegion = $region;
4141
return $this;
@@ -57,7 +57,7 @@ public function getAwsRegion()
5757
* @param string $key
5858
* @return $this
5959
*/
60-
public function setAwsKey(string $key)
60+
public function setAwsKey($key)
6161
{
6262
$this->awsKey = $key;
6363
return $this;
@@ -79,7 +79,7 @@ public function getAwsKey()
7979
* @param string $secret
8080
* @return $this
8181
*/
82-
public function setAwsSecret(string $secret)
82+
public function setAwsSecret($secret)
8383
{
8484
$this->awsSecret = $secret;
8585
return $this;

0 commit comments

Comments
 (0)