ActiveRecord.php 232 Bytes
Newer Older
1 2
<?php

3
namespace yiiunit\data\ar\mongodb;
4 5 6 7

/**
 * Test Mongo ActiveRecord
 */
8
class ActiveRecord extends \yii\mongodb\ActiveRecord
9
{
10
    public static $db;
11

12 13 14 15
    public static function getDb()
    {
        return self::$db;
    }
AlexGx committed
16
}