Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
617 B

<?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());
}
}