Files
piratepoet/lib/Models/FormSegment.php
Jonathan Labreuille e24f8c9653 forms listing complete
2015-11-06 16:08:16 +01:00

13 lines
209 B
PHP

<?php
namespace MailPoet\Models;
if(!defined('ABSPATH')) exit;
class FormSegment extends Model {
public static $_table = MP_FORM_SEGMENT_TABLE;
function __construct() {
parent::__construct();
}
}