From 934c7f6c2fe443d475a2427fc2073f52387b6320 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 28 Nov 2018 11:55:06 -0800 Subject: [PATCH] Added missing comma --- orm/caching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orm/caching.md b/orm/caching.md index 130289d..7c29edf 100644 --- a/orm/caching.md +++ b/orm/caching.md @@ -14,7 +14,7 @@ Drivers can be replaced or added using `LaravelDoctrine\ORM\Configuration\Cache\ ```php public function boot(CacheManager $cache) { - $cache->extend('memcache' function(Application $app) { + $cache->extend('memcache', function(Application $app) { $memcache = new \Memcache; return new MemcacheCache($memcache); });