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

11 lines
204 B
PHP

<?php
namespace MailPoet\Models;
/**
* @property string $ip
*/
class SubscriberIP extends Model {
public static $_table = MP_SUBSCRIBER_IPS_TABLE; // phpcs:ignore PSR2.Classes.PropertyDeclaration
}