]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Whitespace updates.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 17 Jun 2011 12:54:33 +0000 (14:54 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 17 Jun 2011 20:36:28 +0000 (22:36 +0200)
plugins/XCache/XCachePlugin.php

index 532714315f2f3041ba31f428cb9086fb7675155e..5b10718eafe5df762ed1593aa07a77526b267372 100644 (file)
@@ -47,7 +47,6 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  * @link      http://status.net/
  */
-
 class XCachePlugin extends Plugin
 {
     /**
@@ -60,7 +59,6 @@ class XCachePlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheGet(&$key, &$value)
     {
         if (!xcache_isset($key)) {
@@ -84,7 +82,6 @@ class XCachePlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
     {
         $success = xcache_set($key, serialize($value));
@@ -102,7 +99,6 @@ class XCachePlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheDelete(&$key, &$success)
     {
         $success = xcache_unset($key);