From 45467481266bc70fa8d88f5c8489585fa3afe776 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 12 Nov 2009 17:21:09 +0000 Subject: [PATCH] Fix for r58949: correct indentation --- includes/memcached-client.php | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/includes/memcached-client.php b/includes/memcached-client.php index b43e530f8a..c54263418a 100644 --- a/includes/memcached-client.php +++ b/includes/memcached-client.php @@ -75,27 +75,27 @@ class memcached // {{{ properties // {{{ public - // {{{ constants - // {{{ flags + // {{{ constants + // {{{ flags - /** - * Flag: indicates data is serialized - */ - const SERIALIZED = 1; + /** + * Flag: indicates data is serialized + */ + const SERIALIZED = 1; - /** - * Flag: indicates data is compressed - */ - const COMPRESSED = 2; + /** + * Flag: indicates data is compressed + */ + const COMPRESSED = 2; - // }}} + // }}} - /** - * Minimum savings to store data compressed - */ - const COMPRESSION_SAVINGS = 0.20; + /** + * Minimum savings to store data compressed + */ + const COMPRESSION_SAVINGS = 0.20; - // }}} + // }}} /** -- 2.20.1