yii\mongodb\ActiveRecord::primaryKey PHP Метод

primaryKey() публичный статический Метод

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[]
Результат string[] the primary keys of the associated Mongo collection.
    public static function primaryKey()
    {
        return ['_id'];
    }