Fix for r58949: correct indentation
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 12 Nov 2009 17:21:09 +0000 (17:21 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 12 Nov 2009 17:21:09 +0000 (17:21 +0000)
includes/memcached-client.php

index b43e530..c542634 100644 (file)
@@ -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;
 
-               // }}}
+       // }}}
 
 
        /**