From 7c33878f4cc403ac0fae1753c23d626bc88559d2 Mon Sep 17 00:00:00 2001 From: Kamisama Date: Mon, 26 Aug 2013 20:55:19 -0400 Subject: [PATCH] Coding standard fix --- lib/Cake/Cache/Engine/MemcachedEngine.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Cake/Cache/Engine/MemcachedEngine.php b/lib/Cake/Cache/Engine/MemcachedEngine.php index 6cdab23f9ee..4814b066f0a 100755 --- a/lib/Cake/Cache/Engine/MemcachedEngine.php +++ b/lib/Cake/Cache/Engine/MemcachedEngine.php @@ -6,16 +6,17 @@ * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) - * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License + * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * - * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://cakephp.org CakePHP(tm) Project * @package Cake.Cache.Engine - * @since CakePHP(tm) v 1.2.0.4933 - * @license MIT License (http://www.opensource.org/licenses/mit-license.php) + * @since CakePHP(tm) v 2.5.0 + * @license http://www.opensource.org/licenses/mit-license.php MIT License */ /** @@ -111,7 +112,6 @@ public function init($settings = array()) { */ protected function _setOptions() { $this->_Memcached->setOption(Memcached::OPT_LIBKETAMA_COMPATIBLE, true); - //$this->_Memcached->setOption(Memcached::OPT_BINARY_PROTOCOL, true); if (Memcached::HAVE_IGBINARY) { $this->_Memcached->setOption(Memcached::OPT_SERIALIZER, Memcached::SERIALIZER_IGBINARY);