Skip to content

Commit 05a9021

Browse files
authored
Merge pull request #70 from ydb-platform/fix-iam-auth-stdclass
Fix IamAuth.php
2 parents 2025222 + 6519ec4 commit 05a9021

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.5.5
2+
3+
* fixed iam auth for PHP < 8.0
14
* added examples
25
* updated saveToken function in Iam.php
36

src/Auth/IamAuth.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ abstract class IamAuth extends Auth
1111
* @return mixed|null
1212
* @throws Exception
1313
*/
14-
public function requestToken($request_data): mixed
14+
public function requestToken($request_data)
1515
{
1616
$this->logger()->info('YDB: Obtaining new IAM token...');
1717

src/Ydb.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Ydb
88
{
99
use Traits\LoggerTrait;
1010

11-
const VERSION = '1.5.0';
11+
const VERSION = '1.5.5';
1212

1313
/**
1414
* @var string

0 commit comments

Comments
 (0)