[ 'class' => VerbFilter::className(), 'actions' => [ 'logout' => [ 'post' ], 'subscribe' => [ 'post' ], ], ], ]; } public function actionSubscribe() { if (\Yii::$app->request->isPost) { echo 'ok'; } } /** * Displays homepage. * * @return string */ public function actionIndex() { return $this->render('index'); } }