. // }}} namespace App\Entity; use DateTimeInterface; /** * Entity for user remember me * * @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 RememberMe { // {{{ Autocode private string $code; private int $user_id; private DateTimeInterface $modified; public function setCode(string $code): self { $this->code = $code; return $this; } public function getCode(): string { return $this->code; } public function setUserId(int $user_id): self { $this->user_id = $user_id; return $this; } public function getUserId(): int { return $this->user_id; } 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' => 'remember_me', 'fields' => [ 'code' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'good random code'], 'user_id' => ['type' => 'int', 'not null' => true, 'description' => 'user who is logged in'], 'modified' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'], ], 'primary key' => ['code'], 'foreign keys' => [ 'remember_me_user_id_fkey' => ['user', ['user_id' => 'id']], ], ]; } }