11 lines
247 B
PHP
11 lines
247 B
PHP
<?php
|
|
namespace MailPoet\Models;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
class Model extends \Sudzy\ValidModel {
|
|
function __construct() {
|
|
$customValidators = new CustomValidator();
|
|
parent::__construct($customValidators->init());
|
|
}
|
|
} |