80000) { return []; } return [ (new PrimaryKeyColumn())->bindProperty('id'), (new StringColumn())->bindProperty('name'), (new JoinColumn( 'post_id', 'id', PostTest::class))->bindProperty('post'), ]; } public function getPrimaryKeyValue() : ?int { return $this->getId(); } public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function setName(?string $name): TagTest { $this->name = $name; return $this; } public function getPost(): ?PostTest { return $this->post; } public function setPost(?PostTest $post): TagTest { $this->post = $post; return $this; } }