Fix undefined properties in models [MAILPOET-2488]
This commit is contained in:
@@ -6,6 +6,7 @@ use MailPoet\Form\Block\Date;
|
||||
use MailPoet\WP\Functions as WPFunctions;
|
||||
|
||||
/**
|
||||
* @property string $name
|
||||
* @property string $type
|
||||
* @property string|array|null $params
|
||||
*/
|
||||
|
@@ -123,6 +123,8 @@ use MailPoet\WP\Functions as WPFunctions;
|
||||
* @property string|null $created_at
|
||||
* @property string|null $updated_at
|
||||
* @property string|null $id
|
||||
* @property string|null $first
|
||||
* @property string|null $last
|
||||
*/
|
||||
|
||||
class Model extends \MailPoetVendor\Sudzy\ValidModel {
|
||||
|
@@ -20,6 +20,7 @@ use function MailPoetVendor\array_column;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property int $parent_id
|
||||
* @property string $type
|
||||
* @property object|array|boolean $queue
|
||||
* @property string $hash
|
||||
@@ -29,11 +30,13 @@ use function MailPoetVendor\array_column;
|
||||
* @property array $options
|
||||
* @property int $children_count
|
||||
* @property bool|array $statistics
|
||||
* @property string $sent_at
|
||||
* @property string $deleted_at
|
||||
* @property int $total_sent
|
||||
* @property int $total_scheduled
|
||||
* @property array $segments
|
||||
* @property string $subject
|
||||
* @property string $preheader
|
||||
* @property string $body
|
||||
* @property string|null $schedule
|
||||
* @property boolean|null $isScheduled
|
||||
|
@@ -4,6 +4,11 @@ namespace MailPoet\Models;
|
||||
|
||||
use MailPoet\WP\Functions as WPFunctions;
|
||||
|
||||
/**
|
||||
* @property string $name
|
||||
* @property string $newsletter_type
|
||||
*/
|
||||
|
||||
class NewsletterOptionField extends Model {
|
||||
public static $_table = MP_NEWSLETTER_OPTION_FIELDS_TABLE;
|
||||
|
||||
|
@@ -19,6 +19,7 @@ use MailPoet\WP\Functions as WPFunctions;
|
||||
* @property string|array $subscribers
|
||||
* @property string|null $deleted_at
|
||||
* @property string $scheduled_at
|
||||
* @property string $status
|
||||
*/
|
||||
|
||||
class SendingQueue extends Model {
|
||||
|
Reference in New Issue
Block a user