From 93869627779e081292ae3906b76a59b1318f7992 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 10 Jul 2015 18:29:51 -0500 Subject: [PATCH] fix formatting --- cache.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache.md b/cache.md index c37f9cae617..4929cbeca89 100644 --- a/cache.md +++ b/cache.md @@ -244,7 +244,7 @@ To create our custom cache driver, we first need to implement the `Illuminate\Co public function forever($key, $value) {} public function forget($key) {} public function flush() {} - public function getPrefix(){}; + public function getPrefix() {} } We just need to implement each of these methods using a MongoDB connection. Once our implementation is complete, we can finish our custom driver registration: