Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

Commit 4a68bd7

Browse files
committed
Readme adjustments
1 parent 74cf51d commit 4a68bd7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ $token->getRefreshToken();
9393
$token->getExpires();
9494
```
9595

96-
Auth tokens are valid for 5 minutes. If you want to cache your tokens for as much as possible, you will need to pass a [PSR-16](https://www.php-fig.org/psr/psr-16/) compartible cache implementation. Laravel, Symfony and all major frameworks are already compatible with this interface. To enable cache, you only need to call the `setCache` method passing a `Psr\SimpleCache\CacheInterface` implementation.
96+
Auth tokens are valid for 5 minutes. If you want to cache your tokens for as long as possible, you will need to pass a [PSR-16](https://www.php-fig.org/psr/psr-16/) compatible cache implementation. Laravel, Symfony and all major frameworks are already compatible with this interface. To enable the cache, you only need to call the `setCache` method passing a `Psr\SimpleCache\CacheInterface` implementation.
9797

9898
```php
9999
$beeAuth->setCache($cacheImplementation);

src/BeeAuth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ public function generateToken()
106106

107107
protected function getCacheKey()
108108
{
109-
return 'kdg.bee-plugin.bee-auth.token';
109+
return 'bee-plugin.bee-auth.token';
110110
}
111111
}

0 commit comments

Comments
 (0)