From a04b7dcf6dda190051eab2df17f816aa518b9c63 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 22 Jun 2011 00:37:34 +0000 Subject: [PATCH] Fix comment formatting --- includes/Action.php | 18 ++++++++++++------ includes/actions/DeleteAction.php | 1 - 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/includes/Action.php b/includes/Action.php index 5eff68cfd0..5fbb5d1aae 100644 --- a/includes/Action.php +++ b/includes/Action.php @@ -25,16 +25,22 @@ */ 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; /** diff --git a/includes/actions/DeleteAction.php b/includes/actions/DeleteAction.php index 250e7a294c..034c2b881e 100644 --- a/includes/actions/DeleteAction.php +++ b/includes/actions/DeleteAction.php @@ -480,6 +480,5 @@ class DeleteAction extends Action { } public function execute(){ - } } -- 2.20.1