[Lock] Fix merge

This commit is contained in:
Nicolas Grekas 2019-12-12 14:59:51 +01:00
parent 20811cea21
commit 5690b97f7a

View File

@ -27,7 +27,7 @@ use Symfony\Component\Lock\Exception\LockExpiredException;
use Symfony\Component\Lock\Exception\LockStorageException; use Symfony\Component\Lock\Exception\LockStorageException;
use Symfony\Component\Lock\Exception\NotSupportedException; use Symfony\Component\Lock\Exception\NotSupportedException;
use Symfony\Component\Lock\Key; use Symfony\Component\Lock\Key;
use Symfony\Component\Lock\StoreInterface; use Symfony\Component\Lock\BlockingStoreInterface;
/** /**
* MongoDbStore is a StoreInterface implementation using MongoDB as a storage * MongoDbStore is a StoreInterface implementation using MongoDB as a storage
@ -46,7 +46,7 @@ use Symfony\Component\Lock\StoreInterface;
* *
* @author Joe Bennett <joe@assimtech.com> * @author Joe Bennett <joe@assimtech.com>
*/ */
class MongoDbStore implements StoreInterface class MongoDbStore implements BlockingStoreInterface
{ {
private $collection; private $collection;
private $client; private $client;