Improve summary description of Action class

This commit is contained in:
tom--
2015-07-21 12:08:35 -04:00
parent df6f270a0e
commit e0d2d2cc88

View File

@ -12,8 +12,8 @@ use Yii;
/** /**
* Action is the base class for all controller action classes. * Action is the base class for all controller action classes.
* *
* Action provides a way to divide a complex controller into * Action provides a way to reuse action method code. An action method in an Action
* smaller actions in separate class files. * class can be used in multiple controllers or in different projects.
* *
* Derived classes must implement a method named `run()`. This method * Derived classes must implement a method named `run()`. This method
* will be invoked by the controller when the action is requested. * will be invoked by the controller when the action is requested.