. // }}} namespace App\Entity; use DateTimeInterface; /** * Entity for Notice Tag * * @category DB * @package GNUsocial * * @author Zach Copley * @copyright 2010 StatusNet Inc. * @author Mikael Nordfeldth * @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org * @author Hugo Sales * @copyright 2020 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class NoticeTag { // {{{ Autocode private string $tag; private int $notice_id; private DateTimeInterface $created; public function setTag(string $tag): self { $this->tag = $tag; return $this; } public function getTag(): string { return $this->tag; } public function setNoticeId(int $notice_id): self { $this->notice_id = $notice_id; return $this; } public function getNoticeId(): int { return $this->notice_id; } public function setCreated(DateTimeInterface $created): self { $this->created = $created; return $this; } public function getCreated(): DateTimeInterface { return $this->created; } // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'notice_tag', 'description' => 'Hash tags', 'fields' => [ 'tag' => ['type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'hash tag associated with this notice'], 'notice_id' => ['type' => 'int', 'not null' => true, 'description' => 'notice tagged'], 'created' => ['type' => 'datetime', 'not null' => true, 'default' => '0000-00-00 00:00:00', 'description' => 'date this record was created'], ], 'primary key' => ['tag', 'notice_id'], 'foreign keys' => [ 'notice_tag_notice_id_fkey' => ['notice', ['notice_id' => 'id']], ], 'indexes' => [ 'notice_tag_created_idx' => ['created'], 'notice_tag_notice_id_idx' => ['notice_id'], 'notice_tag_tag_created_notice_id_idx' => ['tag', 'created', 'notice_id'], ], ]; } }