12 lines
230 B
PHP
12 lines
230 B
PHP
<?php
|
|
namespace MailPoet\Models;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
class StatisticsUnsubscribes extends Model {
|
|
public static $_table = MP_STATISTICS_UNSUBSCRIBES_TABLE;
|
|
|
|
function __construct() {
|
|
parent::__construct();
|
|
}
|
|
} |