. // }}} namespace App\Entity; use App\Core\DB\DB; use App\Core\Entity; /** * Entity for actor languages * * @category DB * @package GNUsocial * * @author Hugo Sales * @copyright 2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class ActorLanguage extends Entity { // {{{ Autocode // @codeCoverageIgnoreStart private int $actor_id; private int $language_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 setLanguageId(int $language_id): self { $this->language_id = $language_id; return $this; } public function getLanguageId(): int { return $this->language_id; } // @codeCoverageIgnoreEnd // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'actor_language', 'description' => 'join table where one actor can have many languages', 'fields' => [ 'actor_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Actor.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'the actor this language entry refers to'], 'language_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Language.id', 'multiplicity' => 'many to many', 'not null' => true, 'description' => 'the language this entry refers to'], ], 'primary key' => ['actor_id', 'language_id'], 'indexes' => [ 'actor_idx' => ['actor_id'], ], ]; } }