Add missing property annotations used in tests

[MAILPOET-3235]
This commit is contained in:
Jan Lysý
2021-01-13 17:25:43 +01:00
committed by Veljko V
parent 88c884b2c9
commit f140875062
5 changed files with 7 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ use MailPoet\WP\Functions as WPFunctions;
* @property string $description * @property string $description
* @property string $createdAt * @property string $createdAt
* @property string $updatedAt * @property string $updatedAt
* @property string|null $deletedAt
*/ */
class DynamicSegment extends MailPoetSegment { class DynamicSegment extends MailPoetSegment {

View File

@@ -10,6 +10,7 @@ use MailPoet\WP\Functions as WPFunctions;
* @property string|array $body * @property string|array $body
* @property string $name * @property string $name
* @property string $status * @property string $status
* @property string|null $deletedAt
*/ */
class Form extends Model { class Form extends Model {

View File

@@ -37,6 +37,8 @@ use MailPoet\WP\Functions as WPFunctions;
* @property bool|null $isScheduled * @property bool|null $isScheduled
* @property string|null $scheduledAt * @property string|null $scheduledAt
* @property string $gaCampaign * @property string $gaCampaign
* @property string $event
* @property string $unsubscribeToken
*/ */
class Newsletter extends Model { class Newsletter extends Model {

View File

@@ -20,6 +20,7 @@ use MailPoet\WP\Functions as WPFunctions;
* @property string|null $deletedAt * @property string|null $deletedAt
* @property string $scheduledAt * @property string $scheduledAt
* @property string $status * @property string $status
* @property array|string|null $meta
*/ */
class SendingQueue extends Model { class SendingQueue extends Model {

View File

@@ -18,6 +18,8 @@ use MailPoetVendor\Carbon\Carbon;
* @property string $newsletterRenderedSubject * @property string $newsletterRenderedSubject
* @property string|array $newsletterRenderedBody * @property string|array $newsletterRenderedBody
* @property bool $nonExistentColumn * @property bool $nonExistentColumn
* @property string $scheduledAt
* @property int $priority
*/ */
class Sending { class Sending {
const TASK_TYPE = 'sending'; const TASK_TYPE = 'sending';