Fix comment formatting
authorSam Reed <reedy@users.mediawiki.org>
Wed, 22 Jun 2011 00:37:34 +0000 (00:37 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Wed, 22 Jun 2011 00:37:34 +0000 (00:37 +0000)
includes/Action.php
includes/actions/DeleteAction.php

index 5eff68c..5fbb5d1 100644 (file)
  */
 abstract class Action {
 
-       // Page on which we're performing the action
-       // @var Article
+       /**
+        * Page on which we're performing the action
+        * @var Article
+        */
        protected $page;
 
-       // RequestContext if specified; otherwise we'll use the Context from the Page
-       // @var RequestContext
+       /**
+        * RequestContext if specified; otherwise we'll use the Context from the Page
+        * @var RequestContext
+        */
        protected $context;
 
-       // The fields used to create the HTMLForm
-       // @var Array
+       /**
+        * The fields used to create the HTMLForm
+        * @var Array
+        */
        protected $fields;
 
        /**
index 250e7a2..034c2b8 100644 (file)
@@ -480,6 +480,5 @@ class DeleteAction extends Action {
        }
 
        public function execute(){
-
        }
 }