From db61054889c91907f278b09bf08bfde8d0f488d6 Mon Sep 17 00:00:00 2001 From: stancl Date: Sun, 27 Oct 2019 10:35:46 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Contracts/Future/CanDeleteKeys.php | 4 +++- src/Tenant.php | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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; }