From 773dedc598e7dc8d3648e88a6bc200276b0c412a Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Thu, 2 Jun 2016 19:58:07 +0100 Subject: [PATCH] Removed accidently left in method --- src/Illuminate/Cache/ArrayStore.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/Illuminate/Cache/ArrayStore.php b/src/Illuminate/Cache/ArrayStore.php index 7332aa6ff66d..ce9c3902b088 100755 --- a/src/Illuminate/Cache/ArrayStore.php +++ b/src/Illuminate/Cache/ArrayStore.php @@ -41,18 +41,6 @@ public function put($key, $value, $minutes) $this->storage[$key] = $value; } - /** - * Store multiple items in the cache for a given number of minutes. - * - * @param array $values - * @param int $minutes - * @return void - */ - public function putMultiple(array $values, $minutes) - { - $this->storage += $values; - } - /** * Increment the value of an item in the cache. *