From 0135ae425f31da666abdd770c1648bf714587c48 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 20 Oct 2019 16:02:30 +0200 Subject: [PATCH] Fix #2754 --- config/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 7f1f21a20e..8abfc242ef 100644 --- a/config/cache.php +++ b/config/cache.php @@ -84,7 +84,7 @@ return [ 'servers' => [ [ 'host' => env('MEMCACHED_HOST', '127.0.0.1'), - 'port' => env('MEMCACHED_PORT', 11211), + 'port' => (int)env('MEMCACHED_PORT', 11211), 'weight' => 100, ], ],