- Added has_many_through relations to the new model + Subscriber model - Added tests - Fixed syntax in other models This closes #95
13 lines
226 B
PHP
13 lines
226 B
PHP
<?php
|
|
namespace MailPoet\Models;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
class PivotSubscriberList extends Model {
|
|
public static $_table = MP_PIVOT_SUBSCRIBER_LIST_TABLE;
|
|
|
|
function __construct() {
|
|
parent::__construct();
|
|
}
|
|
}
|