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

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

/**
 * Test Mongo ActiveRecord
 */
8
class ActiveRecord extends \yii\mongodb\file\ActiveRecord
9 10 11 12 13 14 15 16
{
	public static $db;

	public static function getDb()
	{
		return self::$db;
	}
}