Illegal offset type - What is it please?

Hello all,

I am following a tutorial on build a first Yii 2.0 app but get this error, what does it means please?

Thank you,

Ben





PHP Warning – yii\base\ErrorException


Illegal offset type

1. in C:\xampp\htdocs\yii2build\frontend\models\Profile.php at line 48

39404142434445464748495051525354555657     * @inheritdoc

     */

    public function rules()

    {

        return [

            [['user_id', 'gender_id'], 'required'],

            [['user_id', 'gender_id'], 'integer'],

            [['first_name', 'last_name'], 'string'],

            [['birthdate', 'created_at', 'updated_at'], 'safe']

            [['gender_id', 'in', 'range'=>array_keys($this->getGenderList())]],

            [['birthdate'], 'date', 'format'=>'Y-m-d'],

        ];

    }

 

    /**

     * @inheritdoc

     */

    public function attributeLabels()

    {

2. in C:\xampp\htdocs\yii2build\frontend\models\Profile.php – yii\base\ErrorHandler::handleError(2, 'Illegal offset type', 'C:\xampp\htdocs\yii2build\fronte...', 48, ...)



You forgot a comma after this line :


[['birthdate', 'created_at', 'updated_at'], 'safe']