| 1 | <?php |
||
| 21 | class ProfileController extends Controller |
||
| 22 | { |
||
| 23 | protected $profileQuery; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * ProfileController constructor. |
||
| 27 | * |
||
| 28 | * @param string $id |
||
| 29 | * @param Module $module |
||
| 30 | * @param ProfileQuery $profileQuery |
||
| 31 | * @param array $config |
||
| 32 | */ |
||
| 33 | public function __construct($id, Module $module, ProfileQuery $profileQuery, array $config = []) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function behaviors() |
||
| 62 | |||
| 63 | public function actionIndex() |
||
| 67 | |||
| 68 | public function actionShow($id) |
||
| 83 | } |
||
| 84 |