mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-04 00:51:51 +08:00
17 lines
232 B
PHP
17 lines
232 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar\mongodb;
|
|
|
|
/**
|
|
* Test Mongo ActiveRecord
|
|
*/
|
|
class ActiveRecord extends \yii\mongodb\ActiveRecord
|
|
{
|
|
public static $db;
|
|
|
|
public static function getDb()
|
|
{
|
|
return self::$db;
|
|
}
|
|
}
|