Skip to content

Commit

Permalink
Merge pull request #70 from ydb-platform/fix-iam-auth-stdclass
Browse files Browse the repository at this point in the history
Fix IamAuth.php
  • Loading branch information
ilyakharev authored Jun 9, 2023
2 parents 2025222 + 6519ec4 commit 05a9021
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.5.5

* fixed iam auth for PHP < 8.0
* added examples
* updated saveToken function in Iam.php

Expand Down
2 changes: 1 addition & 1 deletion src/Auth/IamAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ abstract class IamAuth extends Auth
* @return mixed|null
* @throws Exception
*/
public function requestToken($request_data): mixed
public function requestToken($request_data)
{
$this->logger()->info('YDB: Obtaining new IAM token...');

Expand Down
2 changes: 1 addition & 1 deletion src/Ydb.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Ydb
{
use Traits\LoggerTrait;

const VERSION = '1.5.0';
const VERSION = '1.5.5';

/**
* @var string
Expand Down

0 comments on commit 05a9021

Please sign in to comment.