Skip to content

Commit e667f7f

Browse files
authored
Merge pull request #98 Fix EnvironCredentials.php
2 parents 7883c9e + 67795ed commit e667f7f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* fixed logger in EnvironCredentials
2+
13
# 1.8.1
24

35
* fixed bug, when function Retry::backoffType always return SlowBackoff

src/Auth/EnvironCredentials.php

+10
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,14 @@ public function getName(): string
3737
{
3838
return $this->auth->getName();
3939
}
40+
41+
public function logger()
42+
{
43+
return $this->auth->logger();
44+
}
45+
46+
public function setLogger($logger)
47+
{
48+
$this->auth->setLogger($logger);
49+
}
4050
}

0 commit comments

Comments
 (0)