id = $id; $this->attributeFoo = $attributeFoo; $this->attributeBar = $attributeBar; } /** * @return int */ public function getId(): int { return $this->id; } /** * @return string */ public function getAttributeFoo(): string { return $this->attributeFoo; } /** * @return string */ public function getAttributeBar(): string { return $this->attributeBar; } }