yii\mongodb\ActiveRecord::primaryKey PHP Method

primaryKey() public static method

The default implementation will return ['_id']. Note that an array should be returned even for a collection with single primary key.
public static primaryKey ( ) : string[]
return string[] the primary keys of the associated Mongo collection.
    public static function primaryKey()
    {
        return ['_id'];
    }