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

Commit 47aef9a

Browse files
committed
Fixed Laravel cache injection
1 parent d08bd9f commit 47aef9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Laravel/BeePluginServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function boot()
2323

2424
$this->app->bind(BeeAuth::class, function () {
2525
$client = new BeeAuth(resolve(Client::class));
26-
$client->setCache($this->app('cache.store'));
26+
$client->setCache(app('cache.store'));
2727

2828
if (config('services.bee.client_id')) {
2929
$client->setClientId(config('services.bee.client_id'));

0 commit comments

Comments
 (0)