Files
yii2/tests/unit/data/ar/mongodb/file/CustomerFile.php
Alexander Makarov 75154d351d Refactored AR find
2014-04-07 09:43:03 +04:00

38 lines
617 B
PHP

<?php
namespace yiiunit\data\ar\mongodb\file;
class CustomerFile extends ActiveRecord
{
/**
* @inheritdoc
*/
public static function collectionName()
{
return 'customer_fs';
}
/**
* @inheritdoc
*/
public function attributes()
{
return array_merge(
parent::attributes(),
[
'tag',
'status',
]
);
}
/**
* @inheritdoc
* @return CustomerFileQuery
*/
public static function find()
{
return new CustomerFileQuery(get_called_class());
}
}