From e0d2d2cc88e8bbf151d27945cadc8d7d7984a157 Mon Sep 17 00:00:00 2001 From: tom-- Date: Tue, 21 Jul 2015 12:08:35 -0400 Subject: [PATCH] Improve summary description of Action class --- framework/base/Action.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/base/Action.php b/framework/base/Action.php index 11b56ba7aa..bd884c52b5 100644 --- a/framework/base/Action.php +++ b/framework/base/Action.php @@ -12,8 +12,8 @@ use Yii; /** * Action is the base class for all controller action classes. * - * Action provides a way to divide a complex controller into - * smaller actions in separate class files. + * Action provides a way to reuse action method code. An action method in an Action + * class can be used in multiple controllers or in different projects. * * Derived classes must implement a method named `run()`. This method * will be invoked by the controller when the action is requested.