diff --git a/src/Contracts/Future/CanDeleteKeys.php b/src/Contracts/Future/CanDeleteKeys.php index 990ed34e..25f2f5f6 100644 --- a/src/Contracts/Future/CanDeleteKeys.php +++ b/src/Contracts/Future/CanDeleteKeys.php @@ -1,5 +1,7 @@ storage instanceof CanDeleteKeys) { throw new NotImplementedException(get_class($this->storage), 'deleteMany', - 'This method was added to storage drivers provided by the package in 2.2.0 and will be part of the StorageDriver contract in 3.0.0.' + 'This method was added to storage drivers provided by the package in 2.2.0 and will be part of the StorageDriver contract in 3.0.0.' ); } else { $this->storage->deleteMany($keys); } - + return $this; }