Commit af778d1a by Alexander Makarov

Fixed actions() docs where alias was used to refer to class

parent 408eee75
...@@ -167,7 +167,7 @@ public SiteController extends \yii\web\Controller ...@@ -167,7 +167,7 @@ public SiteController extends \yii\web\Controller
{ {
return [ return [
'about' => [ 'about' => [
'class' => '@app/actions/Page', 'class' => 'app\actions\Page',
'view' => 'about', 'view' => 'about',
], ],
]; ];
......
...@@ -87,9 +87,9 @@ class Controller extends Component implements ViewContextInterface ...@@ -87,9 +87,9 @@ class Controller extends Component implements ViewContextInterface
* *
* ~~~ * ~~~
* return [ * return [
* 'action1' => '@app/components/Action1', * 'action1' => 'app\components\Action1',
* 'action2' => [ * 'action2' => [
* 'class' => '@app/components/Action2', * 'class' => 'app\components\Action2',
* 'property1' => 'value1', * 'property1' => 'value1',
* 'property2' => 'value2', * 'property2' => 'value2',
* ], * ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment