Log.php 289 B

12345678910111213141516171819
  1. <?php
  2. namespace app\models;
  3. use yii\mongodb\ActiveRecord;
  4. class Log extends ActiveRecord {
  5. /**
  6. * @inheritdoc
  7. */
  8. public static function collectionName() {
  9. return 'log';
  10. }
  11. public function attributes() {
  12. return ['_id', 'name', 'trace',];
  13. }
  14. }