Files
piratepoet/lib/Models/PivotSubscriberList.php
MrCasual 0015bdb617 - Added new model "SubscriberList"
- Added has_many_through relations to the new model + Subscriber model
- Added tests
- Fixed syntax in other models
This closes #95
2015-09-01 09:18:00 -04:00

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