I'm beginner to learn yii2.
I am getting this error:
syntax error, unexpected '$model' (T_VARIABLE) form yii2
Here is my code:
public function actionForms(){
    $model = new form11();  // <<error on this line
    if ($model->load(Yii::$app->request->post()) && $model->save()) {
        Yii::$app->session->setFlash('contactFormSubmitted');
 
     
    