actor_id = $actor_id; return $this; } public function getActorId(): int { return $this->actor_id; } public function setUnbound(?bool $unbound): self { $this->unbound = $unbound; return $this; } public function getUnbound(): ?bool { return $this->unbound; } // @codeCoverageIgnoreEnd // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'activitypubGroupUnbound', 'fields' => [ 'actor_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Actor.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'foreign key to actor table'], 'unbound' => ['type' => 'bool', 'not null' => false, 'description' => 'gs:unbound'], ], 'primary key' => ['actor_id'], ]; } }