. // }}} namespace Plugin\Repeat\Entity; use App\Core\Entity; /** * Entity for notices * * @category DB * @package GNUsocial * * @author Eliseu Amaro * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class NoteRepeat extends Entity { private int $id; private int $actor_id; private int $repeat_of; public function setId(int $id): self { $this->id = $id; return $this; } public function getId(): int { return $this->id; } public function setActorId(int $actor_id): self { $this->actor_id = $actor_id; return $this; } public function getActorId(): ?int { return $this->actor_id; } public function setRepeatOf(int $repeat_of): self { $this->repeat_of = $repeat_of; return $this; } public function getRepeatOf(): int { return $this->repeat_of; } public static function schemaDef(): array { return [ 'name' => 'note_repeat', 'fields' => [ 'id' => ['type' => 'int', 'not null' => true, 'description' => 'The id of the repeat itself'], 'actor_id' => ['type' => 'int', 'not null' => true, 'foreign key' => true, 'target' => 'Actor.id', 'multiplicity' => 'one to one', 'description' => 'Who made this repeat'], 'repeat_of' => ['type' => 'int', 'not null' => true, 'foreign key' => true, 'target' => 'Note.id', 'multiplicity' => 'one to one', 'description' => 'Note this is a repeat of'], ], 'primary key' => ['id'], 'foreign keys' => [ 'note_repeat_of_id_fkey' => ['note', ['repeat_of' => 'id']], ], ]; } }