[PLUGIN][Favourite][Repeat] Add notification target getter

This commit is contained in:
2021-12-26 06:09:17 +00:00
parent 625618b4e0
commit f5f7fc6056
3 changed files with 41 additions and 3 deletions

View File

@@ -51,16 +51,16 @@ class Note extends Entity
// @codeCoverageIgnoreStart
private int $id;
private int $actor_id;
private ?string $content;
private ?string $content = null;
private string $content_type = 'text/plain';
private ?string $rendered;
private int $conversation_id;
private ?int $reply_to;
private ?int $reply_to = null;
private bool $is_local;
private ?string $source;
private int $scope = VisibilityScope::PUBLIC;
private ?string $url;
private ?int $language_id;
private ?int $language_id = null;
private DateTimeInterface $created;
private DateTimeInterface $modified;