Browse Source

Merge pull request #3196 from ytake/develop

fixed MemcachedConnector Illegal string offset 'host'
Taylor Otwell 9 years ago
parent
commit
3cfe2a0c85
1 changed files with 3 additions and 1 deletions
  1. 3 1
      config/cache.php

+ 3 - 1
config/cache.php

@@ -50,7 +50,9 @@ return [
 		'memcached' => [
 			'driver'  => 'memcached',
 			'servers' => [
-				'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100
+				[
+					'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100
+				],
 			],
 		],