| 1 | <?php |
||
| 22 | abstract class BaseMongoNotificationModel extends BaseMongoBlameableModel |
||
| 23 | { |
||
| 24 | use NotificationTrait; |
||
| 25 | |||
| 26 | public $expiredAt = 604800; |
||
| 27 | public $guidAttribute = 'guid'; |
||
| 28 | public $updatedAtAttribute = false; |
||
| 29 | public $updatedByAttribute = false; |
||
| 30 | |||
| 31 | 3 | public function init() |
|
| 36 | } |
||
| 37 |