Skip to content

Commit

Permalink
Implement LockProvider on DatabaseStore (#33844)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Aug 13, 2020
1 parent d30bc52 commit 7cd8ca8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Cache/DatabaseStore.php
Expand Up @@ -4,14 +4,15 @@

use Closure;
use Exception;
use Illuminate\Contracts\Cache\LockProvider;
use Illuminate\Contracts\Cache\Store;
use Illuminate\Database\ConnectionInterface;
use Illuminate\Database\PostgresConnection;
use Illuminate\Database\QueryException;
use Illuminate\Support\InteractsWithTime;
use Illuminate\Support\Str;

class DatabaseStore implements Store
class DatabaseStore implements LockProvider, Store
{
use InteractsWithTime, RetrievesMultipleKeys;

Expand Down

0 comments on commit 7cd8ca8

Please sign in to comment.