The output of an action is what the method returns, it could be rendered result or it can be instance of ```yii\web\Response```, for [example](#custom-response-class).
The return value will be handled by the `response` application
component which can convert the output to differnet formats such as JSON for example. The default behavior
is to output the value unchanged though.
...
...
@@ -271,4 +250,27 @@ TBD
See also
--------
Custom response class
---------------------
```php
namespaceapp\controllers;
useyii\web\Controller;
useapp\components\web\MyCustomResponse;#extended from yii\web\Response
classSiteControllerextendsController
{
publicfunctionactionCustom()
{
/*
* do your things here
* since Response in extended from yii\base\Object, you can initialize its values by passing in