From: Sam Reed Date: Wed, 22 Jun 2011 00:37:34 +0000 (+0000) Subject: Fix comment formatting X-Git-Tag: 1.31.0-rc.0~29368 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=a04b7dcf6dda190051eab2df17f816aa518b9c63;p=lhc%2Fweb%2Fwiklou.git Fix comment formatting --- 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(){ - } }