Files
piratepoet/lib/Models/NewsletterLink.php
Jan Jakeš e185121f43 Fix properties with trailing underscore
[MAILPOET-2715]
2020-02-19 19:12:53 +00:00

16 lines
404 B
PHP

<?php
namespace MailPoet\Models;
/**
* @property int $newsletterId
* @property int $queueId
* @property string $url
* @property string $hash
* @property int|null $clicksCount
*/
class NewsletterLink extends Model {
public static $_table = MP_NEWSLETTER_LINKS_TABLE; // phpcs:ignore PSR2.Classes.PropertyDeclaration
const UNSUBSCRIBE_LINK_SHORT_CODE = '[link:subscription_unsubscribe_url]';
}