. // }}} namespace App\Entity; use DateTimeInterface; /** * Entity for subscription * * @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 Follow { // {{{ Autocode >>>>>>> e63aa4d971 ([TOOLS] Change autocode tag to allow editor folding) private int $subscriber; private int $subscribed; private ?bool $jabber; private ?bool $sms; private ?string $token; private ?string $secret; private ?string $uri; private DateTimeInterface $created; private DateTimeInterface $modified; public function setSubscriber(int $subscriber): self { $this->subscriber = $subscriber; return $this; } public function getSubscriber(): int { return $this->subscriber; } public function setSubscribed(int $subscribed): self { $this->subscribed = $subscribed; return $this; } public function getSubscribed(): int { return $this->subscribed; } public function setJabber(?bool $jabber): self { $this->jabber = $jabber; return $this; } public function getJabber(): ?bool { return $this->jabber; } public function setSms(?bool $sms): self { $this->sms = $sms; return $this; } public function getSms(): ?bool { return $this->sms; } public function setToken(?string $token): self { $this->token = $token; return $this; } public function getToken(): ?string { return $this->token; } public function setSecret(?string $secret): self { $this->secret = $secret; return $this; } public function getSecret(): ?string { return $this->secret; } public function setUri(?string $uri): self { $this->uri = $uri; return $this; } public function getUri(): ?string { return $this->uri; } public function setCreated(DateTimeInterface $created): self { $this->created = $created; return $this; } public function getCreated(): DateTimeInterface { return $this->created; } public function setModified(DateTimeInterface $modified): self { $this->modified = $modified; return $this; } public function getModified(): DateTimeInterface { return $this->modified; } // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'follow', 'fields' => [ 'follower' => ['type' => 'int', 'not null' => true, 'description' => 'profile listening'], 'followed' => ['type' => 'int', 'not null' => true, 'description' => 'profile being listened to'], 'uri' => ['type' => 'varchar', 'length' => 191, 'description' => 'universally unique identifier'], 'created' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'], 'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'], ], 'primary key' => ['follower', 'followed'], 'unique keys' => [ 'subscription_uri_key' => ['uri'], ], 'indexes' => [ 'subscription_subscriber_idx' => ['follower', 'created'], 'subscription_subscribed_idx' => ['followed', 'created'], ], ]; } }