Changing comments layout preparing for generated documentation with Phpdocumentor
[lhc/web/wiklou.git] / includes / SiteStatsUpdate.php
index 536908d..468540a 100644 (file)
@@ -1,20 +1,23 @@
 <?php
 # $Id$
-# See deferred.doc
+/**
+ * See deferred.doc
+ */
 
+/**
+ *
+ */
 class SiteStatsUpdate {
 
        var $mViews, $mEdits, $mGood;
 
-       function SiteStatsUpdate( $views, $edits, $good )
-       {
+       function SiteStatsUpdate( $views, $edits, $good ) {
                $this->mViews = $views;
                $this->mEdits = $edits;
                $this->mGood = $good;
        }
 
-       function doUpdate()
-       {
+       function doUpdate() {
                $a = array();
 
                if ( $this->mViews < 0 ) { $m = '-1'; }