Browse Source

Fix code style errors

bancer 5 years ago
parent
commit
a97fa95afa
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Cache/Engine/MemcachedEngine.php

+ 2 - 1
src/Cache/Engine/MemcachedEngine.php

@@ -150,7 +150,7 @@ class MemcachedEngine extends CacheEngine
             if ($this->_config['persistent'] !== false) {
                 $actualServers = [];
                 foreach ($serverList as $server) {
-                    $actualServers[] = $server['host'] . ':' .$server['port'];
+                    $actualServers[] = $server['host'] . ':' . $server['port'];
                 }
                 unset($server);
                 sort($actualServers);
@@ -163,6 +163,7 @@ class MemcachedEngine extends CacheEngine
                     throw new InvalidArgumentException($message);
                 }
             }
+
             return true;
         }