studioespresso/craft-exporter

View on GitHub
src/records/ExportRecord.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace studioespresso\exporter\records;

use craft\db\ActiveRecord;

class ExportRecord extends ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName(): string
    {
        return '{{%exporter_exports}}';
    }
}