From b8654eb75acce6084683ed2fdaca40a5c7bb71a1 Mon Sep 17 00:00:00 2001 From: withoutaname Date: Sun, 13 Jul 2014 00:15:44 -0700 Subject: [PATCH] Documentation: put FormAction and FormlessAction into "Actions" group Change-Id: Iac8a203426897446b8c9f3fbaaa9d608c419bce6 --- includes/actions/FormAction.php | 7 +++---- includes/actions/FormlessAction.php | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/includes/actions/FormAction.php b/includes/actions/FormAction.php index c6fcdde0c6..4c9e85dd0b 100644 --- a/includes/actions/FormAction.php +++ b/includes/actions/FormAction.php @@ -17,14 +17,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * * @file - */ - -/** - * @defgroup Actions Action done on pages + * @ingroup Actions */ /** * An action which shows a form and does something based on the input from the form + * + * @ingroup Actions */ abstract class FormAction extends Action { diff --git a/includes/actions/FormlessAction.php b/includes/actions/FormlessAction.php index f61fc97d3e..a6f1e2957d 100644 --- a/includes/actions/FormlessAction.php +++ b/includes/actions/FormlessAction.php @@ -17,14 +17,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * * @file - */ - -/** - * @defgroup Actions Action done on pages + * @ingroup Actions */ /** * An action which just does something, without showing a form first. + * + * @ingroup Actions */ abstract class FormlessAction extends Action { -- 2.20.1